File: rules

package info (click to toggle)
sizzle 1.10.18-1
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 2,408 kB
  • ctags: 360
  • sloc: makefile: 11
file content (20 lines) | stat: -rwxr-xr-x 377 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
# -*- makefile -*-

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

override_dh_clean:
	dh_clean
	rm -f dist/sizzle.min.js

override_dh_auto_build:
	dh_testdir
	[ -d $(CURDIR)/test/qunit ] || mkdir $(CURDIR)/test/qunit
	uglifyjs < dist/sizzle.js >dist/sizzle.min.js
	dh_auto_build

%:
	dh $@

.PHONY: override_dh_clean override_dh_auto_build