mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-17 18:29:55 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
40 lines
988 B
Makefile
40 lines
988 B
Makefile
LUA = lua-5.1.5
|
|
LUA_TGZ = $(LUA).tar.gz
|
|
LUA_URL = http://www.lua.org/ftp/$(LUA_TGZ)
|
|
LUA_SHA = b3882111ad02ecc6b972f8c1241647905cb2e3fc
|
|
|
|
#
|
|
# Interface to top-level prepare Makefile
|
|
#
|
|
PORTS += $(LUA)
|
|
|
|
LUA_INC_DIR = include/lua
|
|
|
|
prepare-lua: $(CONTRIB_DIR)/$(LUA) $(LUA_INC_DIR)
|
|
|
|
$(CONTRIB_DIR)/$(LUA): clean-lua
|
|
|
|
#
|
|
# Port-specific local rules
|
|
#
|
|
$(DOWNLOAD_DIR)/$(LUA_TGZ):
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(LUA_URL) && touch $@
|
|
|
|
$(DOWNLOAD_DIR)/$(LUA_TGZ).verified: $(DOWNLOAD_DIR)/$(LUA_TGZ)
|
|
$(VERBOSE)$(HASHVERIFIER) $(DOWNLOAD_DIR)/$(LUA_TGZ) $(LUA_SHA) sha1
|
|
$(VERBOSE)touch $@
|
|
|
|
$(CONTRIB_DIR)/$(LUA): $(DOWNLOAD_DIR)/$(LUA_TGZ).verified
|
|
$(VERBOSE)tar xfz $(<:.verified=) -C $(CONTRIB_DIR) && touch $@
|
|
|
|
LUA_INCLUDES = lua.h lauxlib.h luaconf.h lualib.h
|
|
|
|
$(LUA_INC_DIR):
|
|
$(VERBOSE)mkdir -p $@
|
|
$(VERBOSE)for i in $(LUA_INCLUDES); do \
|
|
ln -sf ../../$(CONTRIB_DIR)/$(LUA)/src/$$i $@; done
|
|
|
|
clean-lua:
|
|
$(VERBOSE)rm -rf $(LUA_INC_DIR)
|
|
$(VERBOSE)rm -rf $(CONTRIB_DIR)/$(LUA)
|