Commit | Line | Data |
---|---|---|
4854e96d | 1 | EXTRA_DIST = makegdesc |
2 | ||
672dbb8f | 3 | noinst_LIBRARIES = libcommon.a libhttp.a |
de760c32 | 4 | noinst_PROGRAMS = httest |
35007f25 | 5 | |
6 | libcommon_a_SOURCES = tiger.c \ | |
7 | utils.c | |
8 | ||
672dbb8f FT |
9 | libhttp_a_SOURCES = http.c |
10 | ||
de760c32 FT |
11 | httest_SOURCES = httest.c |
12 | httest_LDADD = libhttp.a libcommon.a | |
13 | ||
e304af88 | 14 | libcommon_a_CPPFLAGS = -D_ISOC99_SOURCE |
46255648 | 15 | libcommon_a_CFLAGS = -fPIC |
672dbb8f | 16 | libhttp_a_CFLAGS = -fPIC |
46255648 | 17 | |
35007f25 | 18 | AM_CPPFLAGS=-I$(top_srcdir)/include |