makefile update (readtex, showbuffer)
authorDaniel Borca <dborca@users.sourceforge.net>
Mon, 31 Jan 2005 13:23:55 +0000 (13:23 +0000)
committerDaniel Borca <dborca@users.sourceforge.net>
Mon, 31 Jan 2005 13:23:55 +0000 (13:23 +0000)
progs/samples/Makefile.DJ
progs/samples/Makefile.mgw

index 3d589ed73f3f1e544fd2f156d394c21a38922a83..557695a66cb5d9dbc9bdb3e9fe2d74e51b5e1673 100644 (file)
@@ -49,8 +49,9 @@
 
 
 
-.PHONY : all
-.SUFFIXES : .c .o .exe
+.PHONY: all
+.SUFFIXES: .c .o .exe
+.SECONDARY: ../util/readtex.o ../util/showbuffer.o
 
 TOP = ../..
 CPU ?= pentium
@@ -80,8 +81,8 @@ endif
 
 .c.o:
        $(CC) -o $@ $(CFLAGS) -c $<
-.o.exe:
-       $(LD) -o $@ $(LDFLAGS) $< $(LDLIBS)
+%.exe: ../util/readtex.o ../util/showbuffer.o %.o
+       $(LD) -o $@ $(LDFLAGS) $^ $(LDLIBS)
 
 all:
        $(error Must specify <filename.exe> to build)
index 40d4aaf58d3f2f0e8005fa49cf70c4970c0c9ecb..54dbfb706ad8ed1738d914d698e60d503660a10c 100644 (file)
@@ -40,8 +40,9 @@
 
 
 
-.PHONY : all
-.SUFFIXES : .c .o .exe
+.PHONY: all
+.SUFFIXES: .c .o .exe
+.SECONDARY: ../util/readtex.o ../util/showbuffer.o
 
 TOP = ../..
 CPU ?= pentium
@@ -63,8 +64,8 @@ LDLIBS = -lglut32 -lglu32 -lopengl32
 
 .c.o:
        $(CC) -o $@ $(CFLAGS) -c $<
-.o.exe:
-       $(LD) -o $@ $(LDFLAGS) $< $(LDLIBS)
+%.exe: ../util/readtex.o ../util/showbuffer.o %.o
+       $(LD) -o $@ $(LDFLAGS) $^ $(LDLIBS)
 
 all:
        $(error Must specify <filename.exe> to build)