mesa/progs/tests/Makefile

37 lines
552 B
Makefile
Raw Normal View History

2000-09-01 21:01:18 +00:00
# Simple makefile for compiling test programs on Linux
# These programs aren't intended to be included with the normal
# distro as they're not too interesting but good for testing during
# development.
CC = gcc
CFLAGS = -g -I../include
2000-09-01 21:01:18 +00:00
LIBS = -L../lib -lglut -lGLU -lGL -L/usr/X11R6/lib -lX11 -lXext -lm
PROGS = cva \
2000-11-18 17:13:04 +00:00
dinoshade \
manytex \
2000-11-18 17:13:04 +00:00
multipal \
projtex \
sharedtex \
texline
2000-09-01 21:01:18 +00:00
##### RULES #####
2000-09-01 21:01:18 +00:00
.SUFFIXES:
.SUFFIXES: .c
2000-09-01 21:01:18 +00:00
.c:
$(CC) $(CFLAGS) $< $(LIBS) -o $@
2000-09-01 21:01:18 +00:00
##### TARGETS #####
2000-09-01 21:01:18 +00:00
default: $(PROGS)
2000-09-01 21:01:18 +00:00
clean:
rm -f $(PROGS)
rm -f *.o