|
Last change
on this file since 1068 was
1068,
checked in by dlawson, 7 years ago
|
|
Fixed a bug in make dist where it would try to recurse into a file (not a directory)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 1 | LIBPACKETDUMP_DIR = libpacketdump |
|---|
| 2 | TOOLS_DIR = tools |
|---|
| 3 | if LIBTRACE_SWIG |
|---|
| 4 | SWIG_DIR = swig |
|---|
| 5 | endif |
|---|
| 6 | SUBDIRS = lib $(LIBPACKETDUMP_DIR) $(TOOLS_DIR) $(SWIG_DIR) docs examples |
|---|
| 7 | |
|---|
| 8 | ACLOCAL_AMFLAGS = -I m4 |
|---|
| 9 | AUTOMAKE_OPTIONS = 1.5 |
|---|
| 10 | |
|---|
| 11 | if HAS_DOXYGEN |
|---|
| 12 | man_MANS = docs/doxygen/man/man3/trace*.3 docs/doxygen/man/man3/libtrace*.3 |
|---|
| 13 | endif |
|---|
| 14 | EXTRA_DIST=examples libtrace.sln libtrace.vcproj test-convert.vcproj \ |
|---|
| 15 | test-format.vcproj test-pcap-bpf.vcproj |
|---|
| 16 | |
|---|
| 17 | .PHONY: docs |
|---|
| 18 | |
|---|
| 19 | bootstrap-clean: |
|---|
| 20 | $(RM) -f Makefile.in aclocal.m4 compile config.* \ |
|---|
| 21 | configure depcomp install-sh ltmain.sh missing \ |
|---|
| 22 | mkinstalldirs stamp-h.in \ |
|---|
| 23 | lib/Makefile.in replace/libreplace.la replace/Makefile.in |
|---|
| 24 | $(RM) -rf autom4te.cache/ |
|---|
| 25 | |
|---|
| 26 | dist-hook: |
|---|
| 27 | for dir in $(EXTRA_DIST); do \ |
|---|
| 28 | if [ ! -d $(distdir)/$$dir ]; then continue; fi; \ |
|---|
| 29 | rm -rf `find $(distdir)/$$dir -name CVS` ; \ |
|---|
| 30 | rm -rf `find $(distdir)/$$dir -name .svn` ; \ |
|---|
| 31 | for i in `\ls -d $(distdir)/$$dir `; do make -C $(distdir)/$$dir/$$i clean; done \ |
|---|
| 32 | done |
|---|
| 33 | rm -rf $(distdir)/tools/tracereport/.{svn,deps} |
|---|
| 34 | |
|---|
| 35 | if HAS_DOXYGEN |
|---|
| 36 | docs/doxygen/man/man3/*.3: docs |
|---|
| 37 | else |
|---|
| 38 | docs/doxygen/man/man3/*.3: |
|---|
| 39 | endif |
|---|
| 40 | |
|---|
| 41 | install-man-hook: docs |
|---|
Note: See
TracBrowser
for help on using the repository browser.