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
335 B
14 lines
335 B
# Makefile.rules
|
|
|
|
NCURSESVERSION = 1
|
|
HAVEXML = 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../gtk -I../wince -I../base -DSPOSMEDIT -DHAVE_NCURSES -DHAVE_LOCALE_H `pkg-config --cflags libxml-2.0` $(DEBUG)
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $<
|
|
|