1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
PROG_NOINST = tests${PROG_SUFFIX}
SRCS = array.m \
dictionary.m \
list.m \
main.m \
object.m \
string.m
include ../buildsys.mk
include ../extra.mk
CPPFLAGS += -I../src -I.. -DSTDOUT
LIBS := -L../src -lobjfw ${LIBS}
|
|
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
PROG_NOINST = tests${PROG_SUFFIX}
SRCS = array.m \
dictionary.m \
list.m \
main.m \
object.m \
string.m \
tcpsocket.m
include ../buildsys.mk
include ../extra.mk
CPPFLAGS += -I../src -I.. -DSTDOUT
LIBS := -L../src -lobjfw ${LIBS}
|