1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
################################################################
# Directory locations
################################################################
# the directory where `make' should be issued.
# use the EUSDIR environment variable
# EUSDIR=/usr/local/eus/
# the directory where resulted executables should be installed
PUBDIR=/usr/
# directories under EUSDIR
# All architecture dependent object files go to OBJDIR.
# All architecture dependent lib files go to ADLIBDIR.
# All architecture dependent executable files go to BINDIR.
MAKEFILE=Makefile
BINDIR=$(EUSDIR)/$(ARCH)/bin
OBJDIR=$(EUSDIR)/$(ARCH)/obj
ADLIBDIR=$(EUSDIR)/$(ARCH)/lib
CDIR=c
LDIR=l
LIBDIR=lib
GEODIR=geo
IMGDIR=image
COMPDIR=comp
DOCDIR=doc/latex
TOOLDIR=tool
XWINDOWDIR=xwindow
GLDIR=opengl/src
GLINCLUDE=-I/usr/local/Mesa/include/
VERSION=9.31
XVERSION=X_V11R6
|