about summary refs log tree commit diff
path: root/mk/jars.mk
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-09T15·12+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-09T15·12+0100
commit55c9a40613fefda6622aa9acd22cce4006fd1077 (patch)
treecd592d5836af42feeeca64ac3ebb77037b93a076 /mk/jars.mk
parent259086de841d155f7951c2cc50f799a4631aa512 (diff)
Move stuff to top-level
This makes it easier to use with "git subtree".
Diffstat (limited to 'mk/jars.mk')
-rw-r--r--mk/jars.mk29
1 files changed, 0 insertions, 29 deletions
diff --git a/mk/jars.mk b/mk/jars.mk
deleted file mode 100644
index 5d459c0a9d70..000000000000
--- a/mk/jars.mk
+++ /dev/null
@@ -1,29 +0,0 @@
-define build-jar =
-  $(1)_NAME ?= $(1)
-
-  _d := $$(strip $$($(1)_DIR))
-
-  $(1)_PATH := $$(_d)/$$($(1)_NAME).jar
-
-  $(1)_TMPDIR := $$(_d)/.$$($(1)_NAME).jar.tmp
-
-  $$($(1)_PATH): $$($(1)_SOURCES)
-	@rm -rf $$($(1)_TMPDIR)
-	@mkdir -p $$($(1)_TMPDIR)
-	$(QUIET) javac $(GLOBAL_JAVACFLAGS) $$($(1)_JAVACFLAGS) -d $$($(1)_TMPDIR) $$($(1)_SOURCES)
-	$(QUIET) jar cf $$($(1)_PATH) -C $$($(1)_TMPDIR) .
-	@rm -rf $$($(1)_TMPDIR)
-
-  $(1)_INSTALL_DIR ?= $$(libdir)/java
-
-  $(1)_INSTALL_PATH := $$($(1)_INSTALL_DIR)/$$($(1)_NAME).jar
-
-  $$(eval $$(call install-file-as, $$($(1)_PATH), $$($(1)_INSTALL_PATH), 0644))
-
-  install: $$($(1)_INSTALL_PATH)
-
-  jars_list += $$($(1)_PATH)
-
-  clean_files += $$($(1)_PATH)
-
-endef