aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMax Horn2002-08-21 16:53:11 +0000
committerMax Horn2002-08-21 16:53:11 +0000
commit2ebd2ba0b5094f87e134745c21055a3af6440afc (patch)
treedecc4926a6f10a91a81c2231879b53a001f1c515 /Makefile
parent85a03808017fdaebb02d3c14bf7f5f15227e6c79 (diff)
downloadscummvm-rg350-2ebd2ba0b5094f87e134745c21055a3af6440afc.tar.gz
scummvm-rg350-2ebd2ba0b5094f87e134745c21055a3af6440afc.tar.bz2
scummvm-rg350-2ebd2ba0b5094f87e134745c21055a3af6440afc.zip
engine.* moved to common (where it belongs); added distclean target which gets rid of the .deps dirs, too; removed -Isound
svn-id: r4794
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index b7746c1bfc..d88b1bd47e 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,13 @@ CXX = c++
CFLAGS = -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar
DEFINES =
LDFLAGS :=
-INCLUDES:= -I. -Icommon -Iscumm -Isound
+INCLUDES:= -I. -Icommon -Iscumm
LIBS = -lncurses
+# Enable this if you want ScummVM to dump all scripts it runs.
+# This is mainly interesting for developers.
+# DEFINES += -DDUMP_SCRIPTS
+
# Uncomment this to activate the MAD lib for compressed sound files
DEFINES += -DCOMPRESSED_SOUND_FILE
LIBS += -lmad
@@ -41,10 +45,6 @@ DEFINES += -DMACOSX
# INCLUDES+= -I/usr/X11R6/include
# LIBS += -lpthread -lXext -lX11
-# Enable this if you want ScummVM to dump all scripts it runs.
-# This is mainly interesting for developers.
-# DEFINES += -DDUMP_SCRIPTS
-
CPPFLAGS= $(DEFINES) $(INCLUDES)
include Makefile.common