blob: 0b4c31d6151ad4b10f1a036dc662b6662c5fc3df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
diff --git a/src/Makefile b/src/Makefile
index b62cada..3b642a8 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -18,13 +18,13 @@ CC = gcc # req. for linux
# (8) -DSDLGRAPHX 1 SDL graphics (generic)
#DBG = -g -W -Wall -pg
-CFLAGS = -O4 -fomit-frame-pointer $(DBG) -DSERVER -DEXT94 -DPERMUTATE $(INC)
+CFLAGS = -O4 -fomit-frame-pointer $(DBG) -DSDLGRAPHX -DEXT94 -DPERMUTATE $(INC)
LFLAGS = -x
# LIB = -lcurses -ltermlib # enable this one for curses display
# LIB = -lvgagl -lvga # enable this one for Linux/SVGA
# LIB = -L/usr/X11R6/lib -lX11 # enable this one for X11
-# INC = `sdl-config --cflags` # enable this one for SDL graphics
-# LIB = `sdl-config --libs` # enable this one for SDL graphics
+INC = `sdl-config --cflags` # enable this one for SDL graphics
+LIB = `sdl-config --libs` # enable this one for SDL graphics
EXESUFFIX=
.SUFFIXES: .o .c .c~ .man .doc .6
|