diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,11 +1,9 @@ prefix = /usr bindir = $(prefix)/bin -# pkgdatadir is hardcoded into jh.sh -pkgdatadir = /usr/share/jh - +jh-bindir = $(prefix)/share/jh subcommands = help list-commands mvn-basename mvn-install mvn-localrepo checksource -dirs = $(DESTDIR)$(bindir) $(DESTDIR)$(pkgdatadir) +dirs = $(DESTDIR)$(bindir) $(DESTDIR)$(jh-bindir) #### @@ -17,11 +15,14 @@ all: PHONY build #### build: PHONY jh $(subcommand_files) -install: PHONY $(DESTDIR)$(bindir)/jh $(addprefix $(DESTDIR)$(pkgdatadir)/,$(subcommand_files) $(help_files)) +install: PHONY $(DESTDIR)$(bindir)/jh $(addprefix $(DESTDIR)$(jh-bindir)/,$(subcommand_files) $(help_files)) clean: PHONY rm -f jh $(subcommand_files) -$(DESTDIR)$(pkgdatadir)/%: % | $(DESTDIR)$(pkgdatadir) +jh.sh: jh.sh.in + sed 's|@jh-bindir@|$(jh-bindir)|g' < $< > $@ + +$(DESTDIR)$(jh-bindir)/%: % | $(DESTDIR)$(jh-bindir) cp '$<' '$@' $(DESTDIR)$(bindir)/jh: jh | $(DESTDIR)$(bindir) |