blob: 9cc03d2a009291e9c5cd74a2df007ee5d99bf107 (
plain) (
blame)
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
|
--- Makefile.orig Sat Jul 10 20:20:15 2004
+++ Makefile Sat Jul 10 20:21:13 2004
@@ -3,20 +3,20 @@
# Maybe you need one of these. Maybe you don't.
-#X11_PATH= -L/usr/X11/lib
-#X11_PATH= -L/usr/X11R6/lib
+X11_PATH= -L${X11BASE}/lib
+X11_PATHI= -I${X11BASE}/include
OGL_LIBS= -lGL -lm
#OGL_LIBS= -lm # Think Different
#------------------------------------------------------------------------------
-CFLAGS= -Wall -O3 -ansi $(shell sdl-config --cflags)
+CFLAGS+= -Wall -ansi $(shell ${SDL_CONFIG} --cflags) ${X11_PATHI}
#CFLAGS= -Wall -g -ansi $(shell sdl-config --cflags)
#CFLAGS= -Wall -pg -ansi $(shell sdl-config --cflags)
-SDL_LIBS= $(shell sdl-config --libs)
-FT2_LIBS= $(shell freetype-config --libs)
+SDL_LIBS= $(shell ${SDL_CONFIG} --libs)
+FT2_LIBS= $(shell %%FREETYPE_CONFIG%% --libs)
MAPC_TARG= mapc
BALL_TARG= neverball
|