mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-01-26 23:53:54 +08:00
45 lines
724 B
Makefile
45 lines
724 B
Makefile
# Makefile for assorted SGI OpenGL demos
|
|
|
|
|
|
##### MACROS #####
|
|
|
|
TOP = ../..
|
|
INCDIR = $(TOP)/include
|
|
LIBDIR = $(TOP)/lib
|
|
|
|
LIBS = -L$(LIBDIR) $(APP_LIB_DEPS)
|
|
|
|
LIB_DEP = $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLUT_LIB)
|
|
|
|
PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \
|
|
font line logo nurb oglinfo olympic overlay point prim quad select \
|
|
shape sphere star stencil stretch texture tri wave
|
|
|
|
|
|
##### RULES #####
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .c
|
|
|
|
.c: $(LIB_DEP)
|
|
$(CC) -I$(INCDIR) $(CFLAGS) $< $(LIBS) -o $@
|
|
|
|
|
|
|
|
##### TARGETS #####
|
|
|
|
default:
|
|
@echo "Specify a target configuration"
|
|
|
|
clean:
|
|
-rm -f *.o *~
|
|
|
|
realclean:
|
|
-rm -f $(PROGS)
|
|
-rm -f *.o *~
|
|
|
|
targets: $(PROGS)
|
|
|
|
|
|
include $(TOP)/Make-config
|