Files
mesa/progs/tests/Makefile
Keith Whitwell 993502aebc Subset demos
2003-03-22 08:46:22 +00:00

31 lines
476 B
Makefile

# Simple makefile for compiling test programs on Linux
# These programs aren't intended to be included with the normal
# distro. They're not too interesting but they're good for testing.
CC = gcc
CFLAGS = -g -I../include
LIBS = -L../lib -lGL -lGLU -lglut -lm
PROGS = miniglxtest miniglxsample manytex texline
##### RULES #####
.SUFFIXES:
.SUFFIXES: .c
.c:
$(CC) $(CFLAGS) $< $(LIBS) -o $@
##### TARGETS #####
default: $(PROGS)
clean:
rm -f $(PROGS)
rm -f *.o