Move stuff to top-level
This makes it easier to use with "git subtree".
This commit is contained in:
parent
259086de84
commit
55c9a40613
10 changed files with 0 additions and 0 deletions
29
jars.mk
Normal file
29
jars.mk
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue