mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 03:30:10 +01:00
added texdemo1
This commit is contained in:
parent
68fc4ff1d7
commit
8e0c6fc0be
1 changed files with 16 additions and 1 deletions
|
|
@ -18,7 +18,8 @@ PROGS = \
|
|||
bump \
|
||||
mandelbrot \
|
||||
noise \
|
||||
toyball
|
||||
toyball \
|
||||
texdemo1
|
||||
|
||||
|
||||
##### RULES #####
|
||||
|
|
@ -43,6 +44,14 @@ default: $(PROGS)
|
|||
extfuncs.h: $(TOP)/progs/util/extfuncs.h
|
||||
cp $< .
|
||||
|
||||
readtex.c: $(TOP)/progs/util/readtex.c
|
||||
cp $< .
|
||||
|
||||
readtex.h: $(TOP)/progs/util/readtex.h
|
||||
cp $< .
|
||||
|
||||
readtex.o: readtex.c readtex.h
|
||||
$(CC) -c -I$(INCDIR) $(CFLAGS) readtex.c
|
||||
|
||||
brick.c: extfuncs.h
|
||||
|
||||
|
|
@ -52,6 +61,12 @@ mandelbrot.c: extfuncs.h
|
|||
|
||||
toyball.c: extfuncs.h
|
||||
|
||||
texdemo1: texdemo1.o readtex.o
|
||||
$(CC) -I$(INCDIR) $(CFLAGS) texdemo1.o readtex.o $(APP_LIB_DEPS) -o $@
|
||||
|
||||
texdemo1.o: texdemo1.c readtex.h extfuncs.h
|
||||
$(CC) -c -I$(INCDIR) $(CFLAGS) texdemo1.c
|
||||
|
||||
|
||||
clean:
|
||||
-rm -f $(PROGS)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue