diff options
Diffstat (limited to 'progs/samples/Makefile.DJ')
-rw-r--r-- | progs/samples/Makefile.DJ | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/progs/samples/Makefile.DJ b/progs/samples/Makefile.DJ index 3d589ed73f3..557695a66cb 100644 --- a/progs/samples/Makefile.DJ +++ b/progs/samples/Makefile.DJ @@ -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) |