]> git.saurik.com Git - wxWidgets.git/commitdiff
added DEP_INFO_FLAGS to compilation options
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 21 Jul 2001 06:42:20 +0000 (06:42 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 21 Jul 2001 06:42:20 +0000 (06:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11133 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/makelib.env.in
src/makeprog.env.in

index 24d821b09c6dfa72065d835b9eb27fa72e9ec03d..ca760d7c5870bb8baed39f9815bac6dad2ee0c42 100644 (file)
@@ -45,13 +45,13 @@ TARGETLIB_SONAME = @WX_TARGET_LIBRARY_SONAME@
 .SUFFIXES:     .o .cpp .c .cxx
 
 .c.o :
-       $(CCC) -c $(CFLAGS) $(PICFLAGS) -o $@ $<
+       $(CCC) -c @DEP_INFO_FLAGS@ $(CFLAGS) $(PICFLAGS) -o $@ $<
 
 .cpp.o :
-       $(CC) -c $(CPPFLAGS) $(PICFLAGS) -o $@ $<
+       $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
 
 .cxx.o :
-       $(CC) -c $(CPPFLAGS) $(PICFLAGS) -o $@ $<
+       $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
 
 # the comment at the end of the next line is needed because otherwise autoconf
 # would remove this line completely - it contains a built-in hack to remove
index 9e46d880b3b31b5d5745dce49bce485ba8fb3851..ac5120068bcfb3cd9a43585fe4ecf7661fe2b489 100644 (file)
@@ -14,13 +14,13 @@ LIBWX_MACRES = $(top_builddir)/lib/lib@WX_LIBRARY@-$(WX_MAJOR_VERSION_NUMBER).$(
 LIBWX_MACRESCOMP = $(RESCOMP) $(RESFLAGS) $(LIBWX_MACRES) -o $(BIN_PROGRAM)
 
 .c.o :
-       $(CCC) -c $(CFLAGS) $(APPEXTRADEFS) -o $@ $<
+       $(CCC) -c @DEP_INFO_FLAGS@ $(CFLAGS) $(APPEXTRADEFS) -o $@ $<
 
 .cpp.o :
-       $(CC) -c $(CPPFLAGS) $(APPEXTRADEFS) -o $@ $<
+       $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(APPEXTRADEFS) -o $@ $<
 
 .cxx.o :
-       $(CC) -c $(CPPFLAGS) $(APPEXTRADEFS) -o $@ $<
+       $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(APPEXTRADEFS) -o $@ $<
 
 # the comment at the end of the next line is needed because otherwise autoconf
 # would remove this line completely - it contains a built-in hack to remove