blob: 33307fe4930eff3c2a17ac7cb18bf0b4c58bfe58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
prefix = /usr
bindir = $(prefix)/bin
pkgdatadir = /usr/share/jh # hardcoded into jh.sh
subcommands = help list-commands mvn-basename mvn-install mvn-localrepo checksource
dirs = $(DESTDIR)$(bindir) $(DESTDIR)$(pkgdatadir)
####
subcommand_files = $(addprefix jh-,$(subcommands))
help_files = $(addsuffix .help.txt,$(subcommand_files))
all: PHONY build
####
build: PHONY jh $(subcommand_files)
install: PHONY $(DESTDIR)$(bindir)/jh $(addprefix $(DESTDIR)$(pkgdatadir)/,$(subcommand_files) $(help_files))
clean: PHONY
rm -f jh $(subcommand_files)
$(DESTDIR)$(pkgdaradir)/%: % | $(DESTDIR)$(pkgdatadir)
cp '$<' '$@'
$(DESTDIR)$(bindir)/jh: jh | $(DESTDIR)$(bindir)
cp '$<' '$@'
$(dirs):
install -d '$@'
####
.PHONY: PHONY FORCE
PHONY FORCE: ; @:
|