File: rules

package info (click to toggle)
librcc 0.2.9-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,424 kB
  • ctags: 1,243
  • sloc: sh: 10,110; ansic: 8,736; xml: 523; makefile: 133
file content (20 lines) | stat: -rwxr-xr-x 562 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f
%:
	dh $@

override_dh_auto_configure:
	./autogen.sh
	./configure --prefix=/usr --disable-libtranslate --enable-force-dynamic-engines

override_dh_auto_build:
	cd docs/api && doxygen Doxyfile
	dh_auto_build

override_dh_clean:
	test ! -f Makefile || $(MAKE) clean distclean distclean-am
	rm -rf docs/api/html
	rm -rf examples/Makefile statgen/Makefile examples/.deps
	rm -f aclocal.m4 m4/libtool.m4 m4/ltversion.m4
	rm -f configure examples/Makefile config.guess ltmain.sh config.sub config.h.in
	find ./ -name 'Makefile.in' -delete
	dh_clean