makefile update (readtex, showbuffer)

This commit is contained in:
Daniel Borca 2005-01-31 13:23:55 +00:00
parent e61c8a5c63
commit fc4cabbfa8
2 changed files with 10 additions and 8 deletions

View 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)

View 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)