Skip to content

Commit

Permalink
minor tweaks, mostly to clean out *~
Browse files Browse the repository at this point in the history
  • Loading branch information
synfinatic committed Oct 19, 2004
1 parent 3962024 commit 1550cd6
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 deletions.
12 changes: 4 additions & 8 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
AUTOMAKE_OPTIONS = foreign

DIST_SUBDIRS = lib src docs
SUBDIRS = lib src man docs
DIST_SUBDIRS = scripts lib src man docs

SUBDIRS = lib src

docdir = $(top_builddir)/docs

docs:
echo Making documentation in $(docdir)
cd $(docdir) && make all

testdir = $(top_buildir)/test

test:
echo Making $ in $(testdir)
cd $(testdir) && make $

MOSTLYCLEANFILES = tcpreplay.spec *~
4 changes: 3 additions & 1 deletion lib/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
noinst_LIBRARIES = libstrl.a

libstrl_a_SOURCES = strlcat.c strlcpy.c
libstrl_a_SOURCES = strlcat.c strlcpy.c

noinst_HEADERS = strlcpy.h tree.h queue.h sll.h

MOSTLYCLEANFILES = *~ *.o *.a
2 changes: 2 additions & 0 deletions man/Makefile.am
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
man_MANS = tcpreplay.8 tcpprep.1 flowreplay.1

MOSTLYCLEANFILES = *~
3 changes: 3 additions & 0 deletions scripts/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#nothing to do here
EXTRA_DIST = dlt2name.pl
MOSTLYCLEANFILES = *~
8 changes: 6 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ flowreplay_SOURCES = flowreplay.c flowkey.c flownode.c flowbuff.c flowstate.c

tcpreplay_LDADD = ./common/libcommon.a ../lib/libstrl.a \
@LNAVLIB@ @LNETLIB@ @LPCAPLIB@
tcpprep_LDADD = ./common/libcommon.a ../lib/libstrl.a \
@LNETLIB@ @LPCAPLIB@

tcpprep_LDADD = ./common/libcommon.a ../lib/libstrl.a \
@LNETLIB@ @LPCAPLIB@

flowreplay_LDADD = ./common/libcommon.a ../lib/libstrl.a \
@LNETLIB@ @LPCAPLIB@

Expand All @@ -26,3 +28,5 @@ noinst_HEADERS = tcpreplay.h tcpprep.h flowreplay.h netout.h \
tcpreplay_CFLAGS = -I../lib
tcpprep_CFLAGS = -I../lib
flowreplay_CFLAGS = -I../lib

MOSTLYCLEANFILES = *~ *.o
2 changes: 2 additions & 0 deletions src/common/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ libcommon_a_LIBADD = ../../lib/libstrl.a
noinst_HEADERS = cidr.h err.h list.h cache.h services.h \
fakepcap.h fakepcapnav.h fakepoll.h xX.h utils.h \
confargs.h confargs.c tree.h timer.h

MOSTLYCLEANFILES = *~

0 comments on commit 1550cd6

Please sign in to comment.