surf/config.mk

29 lines
595 B
Makefile
Raw Normal View History

2009-06-05 13:22:40 +02:00
# surf version
2009-11-02 09:29:54 +01:00
VERSION = 0.4
2009-06-05 13:22:40 +02:00
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
2010-03-26 21:44:48 +01:00
GTKINC=$(shell pkg-config --static --cflags gtk+-2.0 webkit-1.0)
GTKLIB=$(shell pkg-config --static --libs gtk+-2.0 webkit-1.0)
2009-06-05 13:22:40 +02:00
# includes and libs
INCS = -I. -I/usr/include ${GTKINC}
2009-07-13 09:35:41 +02:00
LIBS = -L/usr/lib -lc ${GTKLIB} -lgthread-2.0
2009-06-05 13:22:40 +02:00
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"
2009-10-26 16:54:33 +01:00
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
2010-05-06 13:06:50 +02:00
LDFLAGS = -g ${LIBS}
2009-06-05 13:22:40 +02:00
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
# compiler and linker
CC = cc