added dependency handling to Makefiles

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11145 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2001-07-22 14:19:42 +00:00
parent a132a1c810
commit 1197380cfa
17 changed files with 47 additions and 11 deletions

View File

@@ -19,6 +19,8 @@ DATAFILES = data/about.htm data/logo.png
PROGRAM=about
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -23,6 +23,8 @@ DATAFILES = helpfiles/Index.hhk helpfiles/book1.htm helpfiles/book2.htm \
PROGRAM=help
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -20,6 +20,8 @@ DATAFILES = test.zip
PROGRAM=helpview
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -18,6 +18,8 @@ DATAFILES = test.htm
PROGRAM=printing
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -16,9 +16,11 @@ program_dir = samples/html/test
PROGRAM=test
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
DATAFILES=f.html fft.html imagemap.htm imagemap.png pic.png pic2.bmp \
tables.htm test.htm i18n.gif 8859_2.htm cp1250.htm
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -16,8 +16,10 @@ program_dir = samples/html/virtual
PROGRAM=virtual
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
DATAFILES=start.htm
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -16,8 +16,10 @@ program_dir = samples/html/widget
PROGRAM=widget
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
DATAFILES=start.htm
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -16,8 +16,10 @@ program_dir = samples/html/zip
PROGRAM=zip
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
DATAFILES=pages.zip start.htm
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -18,6 +18,8 @@ PROGRAM=cube
LIBRARIES=$(top_builddir)/lib/@WX_TARGET_LIBRARY_GL@ $(OPENGLLIBS)
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -20,6 +20,8 @@ PROGRAM=isosurf
LIBRARIES=$(top_builddir)/lib/@WX_TARGET_LIBRARY_GL@ $(OPENGLLIBS)
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -20,6 +20,8 @@ PROGRAM=penguin
LIBRARIES=$(top_builddir)/lib/@WX_TARGET_LIBRARY_GL@ $(OPENGLLIBS)
OBJECTS =$(PROGRAM).o lw.o trackball.o
DEPFILES=$(PROGRAM).d lw.d trackball.d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -13,6 +13,10 @@ PROGRAM=HelpGen
OBJECTS = HelpGen.o cjparser.o docripper.o ifcontext.o markup.o \
scriptbinder.o sourcepainter.o srcparser.o \
wx_extra_imps.o
DEPFILES= HelpGen.d cjparser.d docripper.d ifcontext.d markup.d \
scriptbinder.d sourcepainter.d srcparser.d \
wx_extra_imps.d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -16,6 +16,8 @@ program_dir = utils/dialoged/src
PROGRAM=DialogEd
OBJECTS = dialoged.o dlghndlr.o edlist.o edtree.o reseditr.o reswrite.o symbtabl.o winprop.o winstyle.o
DEPFILES= dialoged.d dlghndlr.d edlist.d edtree.d reseditr.d reswrite.d symbtabl.d winprop.d winstyle.d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -9,7 +9,9 @@ PROGRAM=hhp2cached
OBJECTS=$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -16,7 +16,9 @@ DATAFILES = templates/Makefile.in templates/makefile.b32 \
templates/makefile.wat
OBJECTS=$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -8,6 +8,8 @@ program_dir = samples/#NAME
PROGRAM=#NAME
OBJECTS=$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../src/makeprog.env
-include $DEPFILES)

View File

@@ -19,6 +19,8 @@ program_dir = utils/tex2rtf/src
PROGRAM=tex2rtf
OBJECTS = tex2rtf.o tex2any.o texutils.o rtfutils.o xlputils.o htmlutil.o readshg.o table.o
DEPFILES=tex2rtf.d tex2any.d texutils.d rtfutils.d xlputils.d htmlutil.d readshg.d table.d
include ../../../src/makeprog.env
-include $(DEPFILES)