File: rules

package info (click to toggle)
mochiweb 3.3.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 848 kB
  • sloc: erlang: 12,944; makefile: 34; sh: 31
file content (20 lines) | stat: -rwxr-xr-x 393 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
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

override_dh_clean:
	dh_clean
	$(RM) -r $(CURDIR)/_build/
	$(RM) $(CURDIR)/rebar.lock
	$(RM) $(CURDIR)/TEST-*

override_dh_installexamples:
	dh_installexamples
	find $(CURDIR)/debian/erlang-mochiweb/ -name .gitignore -delete

%:
	dh $@

.PHONY: override_dh_clean override_dh_installexamples