aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLudvig Strigeus2001-11-05 19:21:49 +0000
committerLudvig Strigeus2001-11-05 19:21:49 +0000
commite5aca15a0b50a05f5dfcbb42fe0d3e771b36ffa3 (patch)
tree56763f74cbefb6091d6d76d1d3dca234acca2eeb /Makefile
parentcd6443a8e571bdabfd3add2d105c97db704fe31d (diff)
downloadscummvm-rg350-e5aca15a0b50a05f5dfcbb42fe0d3e771b36ffa3.tar.gz
scummvm-rg350-e5aca15a0b50a05f5dfcbb42fe0d3e771b36ffa3.tar.bz2
scummvm-rg350-e5aca15a0b50a05f5dfcbb42fe0d3e771b36ffa3.zip
bug fixes,
speech in dott svn-id: r3454
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 2 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index 985dc3f896..767bbaa308 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,8 @@
-# $Id$
-#
-# $Log$
-# Revision 1.7 2001/11/03 06:17:36 cmatsuoka
-# Using full path for SDL includes (-ISDL doesn't seem to work for
-# native builds).
-#
-
CC = gcc
CFLAGS = -g -Wno-multichar
DEFINES = -DUNIX
-LDFLAGS :=
-INCLUDES:= -I/usr/include/SDL -D_REENTRANT
-LIBS := -lSDL
+LDFLAGS := `sdl-config --libs`
+INCLUDES:= `sdl-config --cflags`
CPPFLAGS= $(DEFINES) $(INCLUDES)
ZIPFILE := scummvm-`date '+%Y-%m-%d'`.zip
@@ -44,6 +35,3 @@ dist:
check:
$(OBJS): $(INCS)
-
-$(OBJS): Makefile
-