mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-20 13:28:09 +02:00
31 lines
547 B
Makefile
31 lines
547 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.
|
|
|
|
TOP = ../..
|
|
|
|
CC = gcc
|
|
CFLAGS = -g -I$(TOP)/include
|
|
LIBS = -L$(TOP)/lib -lGL -lGLU -lglut -lm -Wl,-rpath,$(TOP)/lib
|
|
|
|
PROGS = miniglxtest miniglxsample sample_server sample_server2 manytex texline
|
|
|
|
|
|
##### RULES #####
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .c
|
|
|
|
.c:
|
|
$(CC) $(CFLAGS) $< $(LIBS) -o $@
|
|
|
|
|
|
##### TARGETS #####
|
|
|
|
default: $(PROGS)
|
|
|
|
clean:
|
|
rm -f $(PROGS)
|
|
rm -f *.o
|
|
|