aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 37e36ea88ac73f92a9e87664332b88ca32ca6f16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# $Header$

CC      = gcc
CFLAGS  = -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar 
DEFINES = -DUNIX
LDFLAGS :=
INCLUDES:= `sdl-config --cflags` -I./ -I./sound
CPPFLAGS= $(DEFINES) $(INCLUDES)

# Add -lmad for -DCOMPRESSED_SOUND_FILE
LIBS	= `sdl-config --libs` -lncurses

OBJS	= sdl.o

include Makefile.common