You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
378 B
14 lines
378 B
# Makefile.rules
|
|
|
|
SDLGLVERSION = 1
|
|
OPENGL = 1
|
|
DEPENDFILE = .depend
|
|
DEBUG = -ggdb -pg
|
|
AR = /usr/bin/ar
|
|
CC = /usr/bin/gcc
|
|
CFLAGS = -Wall -g -I../main -I../ -I../mapsys -I../gui -I../sdlgl -I../draw -I../base -DSPOSMROUTE -DHAVE_SDL -DHAVE_LOCALE_H `sdl-config --cflags` `pkg-config --cflags freetype2 libpng` $(DEBUG) -Wl,--export-dynamic
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $<
|
|
|