added dependency handling to Makefiles

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11141 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2001-07-22 14:06:10 +00:00
parent 1297ecfe31
commit 8b2a4e0c1a
6 changed files with 19 additions and 8 deletions

View File

@@ -16,6 +16,8 @@ program_dir = demos/bombs
PROGRAM=bombs
OBJECTS = bombs.o bombs1.o game.o
DEPFILES= bombs.d bombs1.d game.d
include ../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -15,9 +15,11 @@ program_dir = demos/dbbrowse
PROGRAM=dbbrowse
OBJECTS = dbbrowse.o doc.o pgmctrl.o tabpgwin.o \
browsedb.o dbtree.o dbgrid.o dlguser.o
DEPFILES= dbbrowse.d doc.d pgmctrl.d tabpgwin.d \
browsedb.d dbtree.d dbgrid.d dlguser.d
include ../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -16,6 +16,8 @@ program_dir = demos/forty
PROGRAM=forty
OBJECTS =$(PROGRAM).o canvas.o card.o game.o pile.o playerdg.o scoredg.o scorefil.o
DEPFILES=$(PROGRAM).d canvas.d card.d game.d pile.d playerdg.d scoredg.d scorefil.d
include ../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -16,6 +16,8 @@ program_dir = demos/fractal
PROGRAM=fractal
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -18,7 +18,8 @@ DATAFILES = samples.inc breeder.lif
PROGRAM=life
OBJECTS =$(PROGRAM).o dialogs.o game.o reader.o
DEPFILES=$(PROGRAM).d dialogs.d game.d reader.d
include ../../src/makeprog.env
-include $(DEPFILES)

View File

@@ -18,6 +18,8 @@ DATAFILES = wxpoem.txt wxpoem.dat
PROGRAM=wxpoem
OBJECTS =$(PROGRAM).o
DEPFILES=$(PROGRAM).d
include ../../src/makeprog.env
-include $(DEPFILES)