surf/config.mk

31 lines
667 B
Makefile
Raw Normal View History

2009-06-05 06:22:40 -05:00
# surf version
2013-02-10 12:33:54 -06:00
VERSION = 0.6
2009-06-05 06:22:40 -05:00
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
2011-11-20 09:06:38 -06:00
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
2009-06-05 06:22:40 -05:00
2011-11-20 09:06:38 -06:00
GTKINC = `pkg-config --cflags gtk+-2.0 webkit-1.0`
GTKLIB = `pkg-config --libs gtk+-2.0 webkit-1.0`
2009-06-05 06:22:40 -05:00
# includes and libs
2011-11-20 09:06:38 -06:00
INCS = -I. -I/usr/include -I${X11INC} ${GTKINC}
2013-02-08 21:33:58 -06:00
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${GTKLIB} -lgthread-2.0
2009-06-05 06:22:40 -05:00
# flags
2015-01-17 00:21:15 -06:00
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
2010-05-06 06:06:50 -05:00
LDFLAGS = -g ${LIBS}
2009-06-05 06:22:40 -05:00
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
# compiler and linker
CC = cc