surf/config.mk

29 lines
603 B
Makefile
Raw Normal View History

2009-06-05 06:22:40 -05:00
# surf version
2009-11-02 02:29:54 -06:00
VERSION = 0.4
2009-06-05 06:22:40 -05:00
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
2010-03-26 15:44:48 -05: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 06:22:40 -05:00
# includes and libs
INCS = -I. -I/usr/include ${GTKINC}
2009-07-13 02:35:41 -05:00
LIBS = -L/usr/lib -lc ${GTKLIB} -lgthread-2.0
2009-06-05 06:22:40 -05:00
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"
2009-10-26 10:54:33 -05:00
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
2010-03-26 15:44:48 -05:00
LDFLAGS = -g ${LIBS} -static
2009-06-05 06:22:40 -05:00
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
# compiler and linker
CC = cc