blob: cbe111883a4420fa15be5136bc511b587eba2d6c (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
--- work/sge030809/Makefile.conf Tue Aug 12 00:43:35 2003
+++ Makefile.conf Fri Aug 4 15:20:41 2006
@@ -7,11 +7,6 @@
#USE_IMG = n
#QUIET = y
-
-# Compilers (C and C++)
-CC=gcc
-CXX=g++
-
# Make sure sdl-config is available
HAVE_SDL =$(shell if (sdl-config --version) < /dev/null > /dev/null 2>&1; then echo "y"; else echo "n"; fi;)
ifeq ($(HAVE_SDL),n)
@@ -19,45 +14,24 @@
endif
# Where should SGE be installed?
-PREFIX =$(shell sdl-config --prefix)
+PREFIX =PREFIX
# Where should the headerfiles be installed?
-PREFIX_H =$(shell sdl-config --prefix)/include/SDL
+PREFIX_H =PREFIX_H
# Flags passed to the compiler
-CFLAGS =-Wall -O3 -ffast-math
+CFLAGS +=-Wall -O3 -ffast-math
SGE_CFLAGS =$(shell sdl-config --cflags)
-# Uncomment to make some more optimizations
-#CFLAGS =-Wall -O9 -ffast-math -march=i686
-
# Libs config
SGE_LIBS =$(shell sdl-config --libs) -lstdc++
-
-# Is freetype-config available?
-HAVE_FT =$(shell if (freetype-config --version) < /dev/null > /dev/null 2>&1; then echo "y"; else echo "n"; fi;)
-ifeq ($(HAVE_FT),n)
- USE_FT = n
-endif
-
ifneq ($(USE_FT),n)
USE_FT = y
SGE_LIBS +=$(shell freetype-config --libs)
FT_CFLAGS =$(shell freetype-config --cflags)
endif
-
-# Is SDL_image available?
-HAVE_IMG =$(shell if test -e "`sdl-config --prefix`/include/SDL/SDL_image.h" >/dev/null 2>&1; then echo "y"; else echo "n"; fi;)
-
-ifneq ($(USE_IMG),y)
- ifneq ($(USE_IMG),n)
- USE_IMG =$(HAVE_IMG)
- endif
-endif
-
ifeq ($(USE_IMG),y)
SGE_LIBS +=-lSDL_image
endif
-
|