mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
ff575837b6
since the tarball seems to be available on tucows, we'll move it there instead of putting it on my people.FreeBSD.org space. This also fixes the distfile fennerism, and finally we can remove USE_IMAKE! The patches that have been removed are obsolete due to newer compilers.
27 lines
768 B
Plaintext
27 lines
768 B
Plaintext
--- Makefile Thu Sep 2 22:25:18 1999
|
|
+++ Makefile.new Sun Apr 16 17:28:19 2000
|
|
@@ -1,17 +1,18 @@
|
|
-CXX = g++
|
|
+CXX ?= c++
|
|
|
|
# If you don't have OpenGL or Mesa, you can still compile BattleBall;
|
|
# just define the symbol NO_OPENGL when compiling, and don't link with
|
|
# $(GLLIBS) when linking
|
|
-CXXFLAGS = -O2 -funroll-loops
|
|
+CXXFLAGS ?= -O -pipe
|
|
#CXXFLAGS = -O2 -funroll-loops -DNO_OPENGL
|
|
|
|
INCS = -Ibsp -Ilib3d
|
|
-XLIBS = -L/usr/X11R6/lib -lX11
|
|
+X11BASE ?=/usr/X11R6
|
|
+XLIBS = -L$(X11BASE)/lib -lX11
|
|
LIBS = -lm $(XLIBS)
|
|
|
|
-GLINCS = -I/usr/local/X11/include
|
|
-GLLIBS = -lXi -lXmu -lXext -L/usr/local/X11/lib -lMesaGL
|
|
+GLINCS = -I$(X11BASE)/include
|
|
+GLLIBS = -lXi -lXmu -lXext -L$(X11BASE)/lib -lGL
|
|
#GLLIBS =
|
|
|
|
BSPOBJS = bsp/brep.o bsp/bsp.o bsp/polygon.o
|