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

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

View File

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

View File

@@ -19,7 +19,9 @@ DATAFILES = test.zip
PROGRAM=helpview
OBJECTS=$(PROGRAM).o
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -17,7 +17,9 @@ DATAFILES = test.htm
PROGRAM=printing
OBJECTS=$(PROGRAM).o
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -15,10 +15,12 @@ program_dir = samples/html/test
PROGRAM=test
OBJECTS=$(PROGRAM).o
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

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

View File

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

View File

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