blob: 4d956607e262d3ee8bf8ab93c62cd35b66f6700c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# CC C compiler
# CFLAGS flags for building C files
# CFDYN additional flags for dynamic functions
# RLINK flags for linking run-time system
# RLIBS libraries to link with run-time system
# TLIBS libraries to link for POSIX threads
# XLIBS libraries to link for graphics
# XPMDEFS definitions for building XPM library
# GDIR directory of graphics helper library
CC = cc
CFLAGS = -O -I/usr/X11R6/include
CFDYN = +z
RLINK =
RLIBS = -lm
TLIBS = -lrt -lpthread
XLIBS = -lX11
XPMDEFS = -DZPIPE -DSYSV
GDIR = xpm
|