mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 23:30:10 +01:00
58 lines
881 B
Text
58 lines
881 B
Text
# $Id: Makefile.X11,v 1.5 1999/11/12 15:47:38 brianp Exp $
|
|
|
|
# Mesa 3-D graphics library
|
|
# Version: 3.1
|
|
# Copyright (C) 1995-1999 Brian Paul
|
|
|
|
# Makefile for non-GLUT (X11, SVGA, etc) demo programs
|
|
|
|
|
|
##### MACROS #####
|
|
|
|
INCDIR = ../include
|
|
LIBDIR = ../lib
|
|
|
|
GL_LIBS = -L$(LIBDIR) -lglut -lGLU -lGL $(XLIBS)
|
|
|
|
LIB_DEP = $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLUT_LIB)
|
|
|
|
PROGS = glxdemo glxpixmap offset xdemo glxinfo xfont glxdpyinfo
|
|
|
|
|
|
|
|
##### 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
|
|
|