diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-06-29 20:20:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-06-29 20:20:10 (GMT) |
commit | 288a283617c17d2542e9f55cdfc10207d0446e0f (patch) | |
tree | fd2b1e7429f91b00d25cfbf28eb74bbe0648ea81 /unix | |
parent | 731108158440f16956981d9111cdda7bd5593f13 (diff) | |
download | tcl-288a283617c17d2542e9f55cdfc10207d0446e0f.zip tcl-288a283617c17d2542e9f55cdfc10207d0446e0f.tar.gz tcl-288a283617c17d2542e9f55cdfc10207d0446e0f.tar.bz2 |
WIP: Store build info in package
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 21967bd..80eb5b3 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -1256,9 +1256,13 @@ tclAssembly.o: $(GENERIC_DIR)/tclAssembly.c $(COMPILEHDR) tclAsync.o: $(GENERIC_DIR)/tclAsync.c $(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tclAsync.c -tclBasic.o: $(GENERIC_DIR)/tclBasic.c $(COMPILEHDR) $(MATHHDRS) $(NREHDR) +tclBasic.o: $(GENERIC_DIR)/tclBasic.c $(COMPILEHDR) $(MATHHDRS) $(NREHDR) tclUuid.h $(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tclBasic.c +tclUuid.h: $(TOP_DIR)/manifest.uuid + echo "#define TCL_VERSION_UUID \\" >$@ + cat $(TOP_DIR)/manifest.uuid >>$@ + tclBinary.o: $(GENERIC_DIR)/tclBinary.c $(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tclBinary.c |