blob: 7c0953501a73e5505ebb3fbe0af133a2647eabca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $Id$
# LynxOS with g++
debug = 1
static_libs_only = 1
CC = gcc
CXX = g++
CFLAGS += -mthreads -pipe #### -Wall -Wpointer-arith -Winline
CCFLAGS += $(CFLAGS) -fno-implicit-templates -fno-strict-prototype
DCFLAGS += -g
DLD = $(CXX)
LD = $(CXX)
LIBS += -lsocket -ldl -lgen -lnsl -lthread -lw
OCFLAGS += -O2
AR = ar
ARFLAGS = ruv
RANLIB = @true
PRELIB = @true
|