blob: d8e2d1358289557d7d0f4eb62353cbd242e3d1ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
ifeq ($(SRCDIR)x,x)
SRCDIR = $(CURDIR)/../..
BUILDDIR = $(SRCDIR)
endif
SUBDIR = lib/util
VPATH=.:$(SRCDIR)/$(SUBDIR)
default:all
include $(BUILDDIR)/config.mk
# nstring is required for asprintf(), etc. Also some systems don't have
# snprintf(), e.g. Solaris 2.5.1. 2002.03.29.
UTILOBJECTS = \
bitio.o \
filename.o \
io.o \
mallocvar.o \
matrix.o \
nsleep.o \
nstring.o \
rand.o \
randsysrand.o \
randsysrandom.o \
randmersenne.o \
runlength.o \
shhopt.o \
token.o \
vasprintf.o \
MERGE_OBJECTS =
include $(SRCDIR)/common.mk
all: $(UTILOBJECTS)
$(UTILOBJECTS): CFLAGS_TARGET=$(CFLAGS_SHLIB)
$(UTILOBJECTS):%.o:%.c importinc
$(CC) -c $(INCLUDES) $(CFLAGS_ALL) -o $@ $<
testnstring: test.c nstring.h nstring.o
$(CC) $(CFLAGS_ALL) -o $@ nstring.o $<
|