Differences From
Artifact [54a46a52d1]:
11 11 OBJS = vfs_kitdll_data_tcl.o kitInit.o rechan.o pwb.o zlib.o
12 12 EXTRA_OBJS = @EXTRA_OBJS@
13 13 TCLSH_NATIVE = tclsh
14 14
15 15 # Default target
16 16 all: libtclkit@KITDLL_LIB_VERSION@.@SHOBJEXT@
17 17
18 -# Build targets
19 -## VFS Build
20 -vfs_kitdll_data_tcl.o: vfs_kitdll_data_tcl.c
21 -vfs_kitdll_data_tcl.c: dir2c.tcl starpack.vfs vfs_kitdll_data.c
22 - "$(TCLSH_NATIVE)" dir2c.tcl tcl starpack.vfs > vfs_kitdll_data_tcl.c
18 +-include Makefile.common
23 19
24 20 ## Tclkit Build
25 21 kitInit.o: kitInit.c vfs_kitdll.tcl.h
26 -vfs_kitdll.tcl.h: vfs_kitdll.tcl
27 - "$(TCLSH_NATIVE)" ./stringify.tcl vfs_kitdll.tcl > vfs_kitdll.tcl.h
28 22
29 23 ## Extensions
30 24 rechan.o: rechan.c
31 25 pwb.o: pwb.c
32 26 zlib.o: zlib.c
33 27
34 28 ## DLL Build
................................................................................
53 47 rm -f vfs_kitdll.tcl.h
54 48 rm -f tclsh.o tclsh tclsh.exe
55 49 rm -f wish.o wish wish.exe
56 50
57 51 distclean: clean
58 52 rm -f config.status config.log
59 53 rm -f *~
60 - rm -f Makefile
54 + rm -f Makefile Makefile.in Makefile.common
61 55 rm -rf starpack.vfs
62 56
63 57 mrproper: distclean
64 58
65 59 .PHONY: all clean distclean