From: Francesco M. <fr...@us...> - 2005-11-20 11:35:46
|
Update of /cvsroot/wxlua/wxLua/util/build/msw In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv837/util/build/msw Modified Files: makefile.bcc makefile.gcc makefile.vc makefile.wat Log Message: updated bakefile build system Index: makefile.vc =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/msw/makefile.vc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makefile.vc 20 Jun 2005 09:48:55 -0000 1.3 --- makefile.vc 20 Nov 2005 11:35:18 -0000 1.4 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.8 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 32,35 **** --- 32,38 ---- WX_DEBUG = 1 + # Use monolithic build of wxWidgets? [0,1] + WX_MONOLITHIC = 0 + # Does the wxLua utilities should be compiled ? [0,1] USE_BIN2C = 1 Index: makefile.bcc =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/msw/makefile.bcc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makefile.bcc 20 Jun 2005 09:48:39 -0000 1.3 --- makefile.bcc 20 Nov 2005 11:35:18 -0000 1.4 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.8 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 55,58 **** --- 55,63 ---- !endif + # Use monolithic build of wxWidgets? [0,1] + !ifndef WX_MONOLITHIC + WX_MONOLITHIC = 0 + !endif + # Does the wxLua utilities should be compiled ? [0,1] !ifndef USE_BIN2C Index: makefile.wat =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/msw/makefile.wat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makefile.wat 20 Jun 2005 09:48:55 -0000 1.3 --- makefile.wat 20 Nov 2005 11:35:18 -0000 1.4 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.8 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 32,35 **** --- 32,38 ---- WX_DEBUG = 1 + # Use monolithic build of wxWidgets? [0,1] + WX_MONOLITHIC = 0 + # Does the wxLua utilities should be compiled ? [0,1] USE_BIN2C = 1 *************** *** 100,103 **** watcom\util_bin2c_bin2c.obj : .AUTODEPEND ..\..\bin2c\bin2c.c ! $(CC) -zq -fo=$^@ $(UTIL_BIN2C_CFLAGS) $< --- 103,106 ---- watcom\util_bin2c_bin2c.obj : .AUTODEPEND ..\..\bin2c\bin2c.c ! $(CC) -bt=nt -zq -fo=$^@ $(UTIL_BIN2C_CFLAGS) $< Index: makefile.gcc =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/msw/makefile.gcc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makefile.gcc 20 Jun 2005 09:48:55 -0000 1.3 --- makefile.gcc 20 Nov 2005 11:35:18 -0000 1.4 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.8 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 32,35 **** --- 32,38 ---- WX_DEBUG = 1 + # Use monolithic build of wxWidgets? [0,1] + WX_MONOLITHIC = 0 + # Does the wxLua utilities should be compiled ? [0,1] USE_BIN2C = 1 *************** *** 43,46 **** --- 46,50 ---- ### Variables: ### + CPPDEPS = -MT$@ -MF$@.d -MD UTIL_BIN2C_CFLAGS = $(CPPFLAGS) $(CFLAGS) UTIL_BIN2C_OBJECTS = \ *************** *** 64,67 **** --- 68,72 ---- clean: -if exist mingw\*.o del mingw\*.o + -if exist mingw\*.d del mingw\*.d -if exist ..\..\..\bin\bin2c.exe del ..\..\..\bin\bin2c.exe *************** *** 72,78 **** mingw\util_bin2c_bin2c.o: ../../bin2c/bin2c.c ! $(CC) -c -o $@ $(UTIL_BIN2C_CFLAGS) $< .PHONY: all clean --- 77,85 ---- mingw\util_bin2c_bin2c.o: ../../bin2c/bin2c.c ! $(CC) -c -o $@ $(UTIL_BIN2C_CFLAGS) $(CPPDEPS) $< .PHONY: all clean + # Dependencies tracking: + -include mingw/*.d |