Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | change Makefile because of [f99aa7c039]
Indeed stubs are now in DsLogAdminStubs directory. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a874776aec12d9993689dfdb7542f56f |
User & Date: | tgg 2012-04-09 18:22:17.602 |
Context
2012-04-09
| ||
18:41 | prepare for 1.0.1 release check-in: f465dfd05d user: tgg tags: trunk, release-1.0.1 | |
18:22 |
change Makefile because of [f99aa7c039]
Indeed stubs are now in DsLogAdminStubs directory. check-in: a874776aec user: tgg tags: trunk | |
18:12 |
fix [f99aa7c039]
Using information from chapter "Libraries and Packages" from: http://beedub.com/book/ check-in: 8461cbe851 user: tgg tags: trunk | |
Changes
Changes to Makefile.
1 2 3 4 5 6 | # # Makefile for tlsgui -- generates Tcl stubs # # Written by Thomas Girard <thomas.g.girard@free.fr> # IDL_FILES := $(notdir $(wildcard idl/*.idl)) | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # # Makefile for tlsgui -- generates Tcl stubs # # Written by Thomas Girard <thomas.g.girard@free.fr> # IDL_FILES := $(notdir $(wildcard idl/*.idl)) TCL_FILES := $(addprefix DsLogAdminStubs/,$(IDL_FILES:.idl=.tcl)) all: $(TCL_FILES) clean: $(RM) *~ DsLogAdminStubs/*~ realclean: clean $(RM) $(TCL_FILES) .PHONY: all clean realclean DsLogAdminStubs/%.tcl: idl/%.idl (cd $(<D) && idl2tcl -I . --name ../$(@:.tcl=) $(<F)) |