File: rules

package info (click to toggle)
node-crc 3.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 272 kB
  • ctags: 13
  • sloc: makefile: 10; sh: 2
file content (22 lines) | stat: -rwxr-xr-x 397 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
21
22
#!/usr/bin/make -f
# -*- makefile -*-

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

%:
	dh $@

override_dh_auto_clean:
	dh_clean
	if [ -d lib.orig ]; then mv lib.orig/* lib/; rm -rf lib.orig; fi

override_dh_auto_build:
	if [ ! -d lib.org ]; then mv lib lib.orig; fi
	coffee --bare --output ./lib --compile ./src/*.coffee

override_dh_auto_test:
	mocha -C test/*.spec.coffee