From 5fd630229b132a13739f48ca9e1dc804ad23ff82 Mon Sep 17 00:00:00 2001 From: tbbulloc Date: Fri, 26 Jan 2007 19:27:12 +0000 Subject: [PATCH] Revised Makefile.am for src directories to explicitly include the .h files to allow make distcheck to pass --- httperf/ChangeLog | 5 +++++ httperf/src/Makefile.am | 6 ++++-- httperf/src/gen/Makefile.am | 6 +++--- httperf/src/stat/Makefile.am | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/httperf/ChangeLog b/httperf/ChangeLog index 89b104d..93988dc 100755 --- a/httperf/ChangeLog +++ b/httperf/ChangeLog @@ -1,3 +1,8 @@ +2007-01-26 Ted Bullock + + * Revised Makefile.am for src directories to explicitly include the + .h files to allow make distcheck to pass + 2007-01-26 Ted Bullock * Removed getopt.c and getopt1.c from build process diff --git a/httperf/src/Makefile.am b/httperf/src/Makefile.am index e65b9db..19a64ad 100755 --- a/httperf/src/Makefile.am +++ b/httperf/src/Makefile.am @@ -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 diff --git a/httperf/src/gen/Makefile.am b/httperf/src/gen/Makefile.am index 63745b7..899f691 100755 --- a/httperf/src/gen/Makefile.am +++ b/httperf/src/gen/Makefile.am @@ -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 diff --git a/httperf/src/stat/Makefile.am b/httperf/src/stat/Makefile.am index d24b1a1..353b10e 100755 --- a/httperf/src/stat/Makefile.am +++ b/httperf/src/stat/Makefile.am @@ -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