Browse Source

Revised Makefile.am for src directories to explicitly include the .h files to allow make distcheck to pass

ahc_fix_select
tbbulloc 18 years ago
parent
commit
5fd630229b
4 changed files with 13 additions and 6 deletions
  1. +5
    -0
      httperf/ChangeLog
  2. +4
    -2
      httperf/src/Makefile.am
  3. +3
    -3
      httperf/src/gen/Makefile.am
  4. +1
    -1
      httperf/src/stat/Makefile.am

+ 5
- 0
httperf/ChangeLog View File

@@ -1,3 +1,8 @@
2007-01-26 Ted Bullock <tbullock@canada.com>

* Revised Makefile.am for src directories to explicitly include the
.h files to allow make distcheck to pass

2007-01-26 Ted Bullock <tbullock@canada.com>

* Removed getopt.c and getopt1.c from build process


+ 4
- 2
httperf/src/Makefile.am View File

@@ -1,11 +1,13 @@
SUBDIRS = gen lib stat

# what flags you want to pass to the C compiler & linker
AM_CFLAGS = -Wall -I$(srcdir)/{gen,lib,stat}/
AM_CFLAGS = -Wall -I$(srcdir)/{gen,lib,stat}/ -I.
AM_LDFLAGS = -lm

bin_PROGRAMS = httperf idleconn
httperf_SOURCES = httperf.c object.c call.c conn.c sess.c core.c event.c http.c timer.c
httperf_SOURCES = httperf.c httperf.h object.c object.h call.c call.h conn.c \
conn.h sess.c sess.h core.c core.h event.c event.h http.c http.h timer.c \
timer.h
idleconn_SOURCES = idleconn.c

httperf_LDADD = gen/libgen.a lib/libutil.a stat/libstat.a

+ 3
- 3
httperf/src/gen/Makefile.am View File

@@ -1,9 +1,9 @@
# what flags you want to pass to the C compiler & linker
AM_CFLAGS = -Wall -O2 -I$(srcdir)/../ -I$(srcdir)/../../
AM_CFLAGS = -Wall -O2 -I$(srcdir)/../ -I$(srcdir)/../../ -I.. -I$(srcdir)
AM_LDFLAGS =

noinst_LIBRARIES = libgen.a
libgen_a_SOURCES = call_seq.c conn_rate.c misc.c rate.c session.c \
uri_fixed.c uri_wlog.c uri_wset.c \
libgen_a_SOURCES = call_seq.c conn_rate.c misc.c rate.c rate.h session.c \
session.h uri_fixed.c uri_wlog.c uri_wset.c \
wsess.c wsesslog.c wsesspage.c \
sess_cookie.c

+ 1
- 1
httperf/src/stat/Makefile.am View File

@@ -3,4 +3,4 @@ AM_CFLAGS = -Wall -O2 -I$(srcdir)/../ -I$(srcdir)/../gen/ -I$(srcdir)/../../
AM_LDFLAGS =

noinst_LIBRARIES = libstat.a
libstat_a_SOURCES = basic.c sess_stat.c print_reply.c
libstat_a_SOURCES = basic.c sess_stat.c print_reply.c stats.h

Loading…
Cancel
Save