diff options
author | Keith Packard <keithp@keithp.com> | 2018-10-06 18:11:13 -0600 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-10-06 18:11:13 -0600 |
commit | e405ec771b812f0ff78abbe813c3a793ae129487 (patch) | |
tree | dd653361bed06c745ffa4e4e2d91c634c9051f54 | |
parent | a372152654613fd8479ed4687b987ae2a513adf6 (diff) |
altos-map: Install .jar file for altos-map
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | map-server/altos-map/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/map-server/altos-map/Makefile.am b/map-server/altos-map/Makefile.am index efaae457..f7c9bdc8 100644 --- a/map-server/altos-map/Makefile.am +++ b/map-server/altos-map/Makefile.am @@ -19,6 +19,12 @@ FATJAR=altosmap-fat.jar all-local: classes/altosmap $(JAR) altos-map altos-map-test altos-map-jdb +install-altosmapJAVA: altosmap.jar + @$(NORMAL_INSTALL) + test -z "$(altosmapdir)" || $(MKDIR_P) "$(DESTDIR)$(altosmapdir)" + echo " $(INSTALL_DATA)" "$<" "'$(DESTDIR)$(altosmapdir)/altosmap.jar'"; \ + $(INSTALL_DATA) "$<" "$(DESTDIR)$(altosmapdir)" + classes/altosmap: mkdir -p classes/altosmap |