blob: b6020a27e7287910925e4c237461eef0a2029786 (
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 = c89
CFLAGS = -O -OPT:Olimit=5000 -woff 1048,1116,1188,1209,1548
CFDYN =
RLINK =
RLIBS = -lm
TLIBS = -lpthread
XLIBS = -lX11
XPMDEFS = -DZPIPE
GDIR = xpm
|