Overview
Comment: | Fixed missing dependencies for EXTRA_OBJS in kit target |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | f4f93d09a5a29923ad7e8c24e9bfacdc0428cd81 |
User & Date: | rkeene on 2010-09-26 04:50:25 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:50 | Updated to remove kitdll from releases since it is currently incomplete check-in: 914a6c9397 user: rkeene tags: trunk | |
04:50 | Fixed missing dependencies for EXTRA_OBJS in kit target check-in: f4f93d09a5 user: rkeene tags: trunk | |
04:50 | Corrected typo in previous commit check-in: 62d83850be user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/Makefile.in from [05b77b0a8f] to [6f33927faa].
9 9 EXTRA_OBJS = @EXTRA_OBJS@ 10 10 11 11 all: kit 12 12 13 13 kit.res.o: kit.rc kit.ico 14 14 $(RC) -o kit.res.o $(CPPFLAGS) kit.rc 15 15 16 -kit: $(OBJS) $(ARCHS) 16 +kit: $(OBJS) $(EXTRA_OBJS) $(ARCHS) 17 17 $(CC) $(CPPFLAGS) $(CFLAGS) -o kit $(OBJS) $(EXTRA_OBJS) $(ARCHS) $(LDFLAGS) $(LIBS) 18 18 19 19 boot.tcl.h: boot.tcl 20 20 ./stringify.tcl boot.tcl > boot.tcl.h 21 21 22 22 zipvfs.tcl.h: zipvfs.tcl 23 23 ./stringify.tcl zipvfs.tcl > zipvfs.tcl.h