59 lines
1007 B
Makefile
59 lines
1007 B
Makefile
# $Id: Makefile.X11,v 1.3 2000/02/16 01:09:06 brianp Exp $
|
|
|
|
# Mesa 3-D graphics library
|
|
# Version: 3.3
|
|
# Copyright (C) 1995-1999 Brian Paul
|
|
|
|
# Makefile for assorted SGI OpenGL demos
|
|
|
|
|
|
##### MACROS #####
|
|
|
|
INCDIR = ../include
|
|
LIBDIR = ../lib
|
|
|
|
GL_LIBS = -L$(LIBDIR) -lglut -lGLU -lGL $(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) $< $(GL_LIBS) -o $@
|
|
|
|
|
|
|
|
##### TARGETS #####
|
|
|
|
default:
|
|
@echo "Specify a target configuration"
|
|
|
|
clean:
|
|
-rm *.o *~
|
|
|
|
realclean:
|
|
-rm $(PROGS)
|
|
-rm *.o *~
|
|
|
|
targets: $(PROGS)
|
|
|
|
# execute all programs
|
|
exec: $(PROGS)
|
|
@for prog in $(PROGS) ; \
|
|
do \
|
|
echo -n "Running $$prog ..." ; \
|
|
./$$prog; \
|
|
echo ; \
|
|
done
|
|
|
|
|
|
include ../Make-config
|