12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- AUTOMAKE_OPTIONS = foreign
- include $(top_srcdir)/libopts/MakeDefs.inc
- SUBDIRS = scripts lib $(LIBOPTS_DIR) src
- DIST_SUBDIRS = scripts lib libopts src docs test
- .PHONY: manpages docs test man2html
- dist-hook: version manpages
- DOCS_DIR = $(top_builddir)/docs
- man2html:
- cd scripts && make man2html
- docs: manpages
- echo Making docs in $(DOCS_DIR)
- cd $(DOCS_DIR) && make docs
- clean-docs:
- cd $(DOCS_DIR) && make clean-docs
- postweb: manpages doxygen
- cd $(DOCS_DIR) && make postweb
- postwebsf: manpages doxygen
- cd $(DOCS_DIR) && make postwebsf
- manpages: man2html
- cd src && make manpages
- TEST_DIR = $(top_builddir)/test
- test:
- echo Making test in $(TEST_DIR)
- cd $(TEST_DIR) && make test
- dlt_names:
- cat @SAVEFILE_C@ | $(top_builddir)/scripts/dlt2name.pl src/dlt_names.h
- version:
- -rm -f src/common/svn_version.c
- cd src/common && make svn_version.c
- distclean-local:
- -rm -rf autom4te.cache doxygen
- doxygen: version
- doxygen doxygen.cfg
- MOSTLYCLEANFILES = tcpreplay.spec *~
- DISTCLEANFILES = .tm_project.cache stamp-h1 *.tar.*
- MAINTAINERCLEANFILES = Makefile.in configure *.bak
- EXTRA_DIST = doxygen.cfg.in
|