File: Makefile.am

package info (click to toggle)
mp4h 1.3.1-17
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 4,744 kB
  • sloc: ansic: 22,107; sh: 8,204; makefile: 622; yacc: 318
file content (25 lines) | stat: -rw-r--r-- 764 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4

DIST_SUBDIRS = lib src po doc modules tests

if LOADABLE_MODULES
SUBDIRS = lib src po doc modules tests
else
SUBDIRS = lib src po doc tests
endif

EXTRA_DIST = config.rpath m4/ChangeLog CREDITS README README.pcre bootstrap.sh shtool

deb:
	if test -f ../mp4h_$(VERSION).orig.tar.gz; then \
          :; \
        else \
          $(MAKE) dist && mv mp4h-$(VERSION).tar.gz ../mp4h_$(VERSION).orig.tar.gz; \
        fi
	-rm -rf config.log autom4te.cache
	$(MAKE) distclean && dpkg-buildpackage -i'/CVS|/\.cvsignore|/\.scvsrc|/tags' -rfakeroot

README: configure.ac src/readme.tmpl
	@x='@'; sed -e "s/$${x}PACKAGE_VERSION$${x}/@PACKAGE_VERSION@/" -e "s/$${x}PACKAGE_DATE$${x}/@PACKAGE_DATE@/" src/readme.tmpl > $@