File: rules

package info (click to toggle)
robert-hooke 1.3.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 140 kB
  • sloc: xml: 72; makefile: 9
file content (15 lines) | stat: -rwxr-xr-x 260 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f

include /usr/share/javahelper/java-vars.mk

PRODUCED_JAR=hooke.jar

%:
	dh $@ --with javahelper --with jh_maven_repo_helper

override_jh_build:
	jar cf $(PRODUCED_JAR) -C src .

override_jh_clean:
	jh_clean
	rm -f $(CURDIR)/$(PRODUCED_JAR)