JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
make st and std separate programmes
[st.git] / config.mk
1 # st version
2 VERSION = 0.0
3
4 # Customize below to fit your system
5
6 # paths
7 PREFIX = /usr/local
8 MANPREFIX = ${PREFIX}/share/man
9
10 X11INC = /usr/X11R6/include
11 X11LIB = /usr/X11R6/lib
12
13 # includes and libs
14 INCS = -I. -I/usr/include -I${X11INC}
15 LIBS = -L/usr/lib -lc
16 X11LIBS =  -L${X11LIB} -lX11
17
18 # glibc
19 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
20
21 # flags
22 #CPPFLAGS = -DVERSION=\"${VERSION}\"
23 CFLAGS = -Os ${INCS} ${CPPFLAGS}
24 LDFLAGS = -s ${LIBS}
25 X11LDFLAGS = ${X11LIBS}
26 #CFLAGS = -g -std=c99 -pedantic -Wall -O2 ${INCS} ${CPPFLAGS}
27 #LDFLAGS = -g ${LIBS}
28
29 # Solaris
30 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
31 #LDFLAGS = ${LIBS}
32
33 # compiler and linker
34 CC = cc