about summary refs log tree commit diff
path: root/src/portab/Makefile
blob: 2814557e513ccd0ef5333348b529770a20d9c80e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CFLAGS += -DDOCDIR='"/usr/local/share/doc/ngircd"'
CFLAGS += -DHAVE_CONFIG_H
CFLAGS += -I..
CFLAGS += -I../portab
CFLAGS += -I../ipaddr
CFLAGS += -I../tool

OBJS += ansi2knr.o
OBJS += portabtest.o
OBJS += strdup.o
OBJS += strlcpy.o
OBJS += strndup.o
OBJS += strtok_r.o
OBJS += vsnprintf.o
OBJS += waitpid.o

all: libngportab.a

libngportab.a: ${OBJS}
	ar rcs libngportab.a ${OBJS}