123456789101112131415161718192021222324252627282930313233343536373839 |
- ACLOCAL_AMFLAGS=-I config
- if DOC
- DOC_SUBDIR = doc
- endif
- if TEST
- TEST_SUBDIR = tests
- endif
- SUBDIRS = config src ${DOC_SUBDIR} ${TEST_SUBDIR} examples
- DIST_SUBDIRS = config src doc tests examples
- EXTRA_DIST = \
- log4c.m4 \
- log4c.spec.in \
- log4c.spec
- bin_SCRIPTS = log4c-config
- BUILT_SOURCES=log4c-config
- m4datadir = $(datadir)/aclocal
- m4data_DATA = log4c.m4
- sysconf_DATA = log4crc.sample
- dist_man_MANS = log4c-config.1
- pkgconfigdir = $(libdir)/pkgconfig
- pkgconfig_DATA = log4c.pc
- rpm: dist
- mkdir -p $(distdir)/rpmbuild/{BUILD,RPMS,SOURCES,SRPMS,SPECS}
- mkdir $(distdir)/rpmbuild/RPMS/i386
- # remove the "--clean" here to leave the rpmbuild intermediate file
- # for debugging the rpm generation
- # The _topdir seems to have to be absolute
- rpmbuild -ta --clean --define='_topdir $(CURDIR)/$(distdir)/rpmbuild' ${distdir}.tar.gz
- #rpmbuild --clean -ta ${distdir}.tar.gz
|