File: rules

package info (click to toggle)
coq-libhyps 2.0.8-6
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 304 kB
  • sloc: makefile: 14; sh: 7
file content (20 lines) | stat: -rwxr-xr-x 353 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f

export DEB_BUILD_OPTIONS += noautodbgsym

%:
	dh $@ --with coq,ocaml

override_dh_auto_build:
	./configure.sh
	make

override_dh_auto_clean:
	if test -f Makefile; then \
	  make clean; \
	fi
	find . -name "*.aux" -delete
	rm -f Makefile Makefile.conf _CoqProject

override_dh_auto_install:
	DESTDIR=$(CURDIR)/debian/tmp make install