3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
33 lines
841 B
Text
33 lines
841 B
Text
SRCS = Glasteroids.cxx Bobcat.cxx MarchingCubes.cxx BCship.cxx BCobject.cxx\
|
|
BCcollide.cxx GlutFunctions.cxx BCmenu.cxx BCenemy.cxx TexFont.cxx \
|
|
SplashScreen.cxx
|
|
OBJS = Glasteroids.o Bobcat.o MarchingCubes.o BCship.o BCobject.o\
|
|
BCcollide.o GlutFunctions.o BCmenu.o BCenemy.o TexFont.o \
|
|
SplashScreen.o
|
|
CXX ?= c++
|
|
CXXFLAGS += -DGL_GLEXT_LEGACY ${PTHREAD_CFLAGS}
|
|
PROG = Glasteroids
|
|
|
|
LIBS = -lglut -lGLU -lGL -lXmu -lX11 -lXext -lm -lXi ${PTHREAD_LIBS}
|
|
|
|
INCDIR = -I${LOCALBASE}/include
|
|
LIBDIR = -L${LOCALBASE}/lib
|
|
|
|
PREFIX ?= /usr/X11R6
|
|
X11BASE ?= /usr/X11R6
|
|
|
|
.SUFFIXES: .cxx .o
|
|
|
|
.cxx.o:
|
|
$(CXX) $(CXXFLAGS) -DPREFIX=\"${PREFIX}\" -c $< $(INCDIR)
|
|
|
|
all: $(PROG)
|
|
|
|
$(PROG): $(OBJS)
|
|
$(CXX) -o $(PROG) -Wall $(OBJS) $(LIBDIR) $(LIBS)
|
|
|
|
clean:
|
|
rm -f *.o *~ $(PROG)
|
|
|
|
depend:
|
|
makedepend -- $(INCDIR) -- $(SRCS)
|