mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
|
#
|
||
|
# \brief Download, and unpack Fiasco and addtional needed tools (sigma0, bootstrap)
|
||
|
# \author Stefan Kalkowski
|
||
|
# \date 2011-07-18
|
||
|
#
|
||
|
|
||
|
VERBOSE ?= @
|
||
|
ECHO = @echo
|
||
|
DOWNLOAD_DIR = download
|
||
|
CONTRIB_DIR = contrib
|
||
|
FIASCO_ARCHIVE = 3rd_fiasco.tar.bz2
|
||
|
FIASCO_URI = http://downloads.sourceforge.net/project/genode/3rd/$(FIASCO_ARCHIVE)
|
||
|
|
||
|
#
|
||
|
# Print help information by default
|
||
|
#
|
||
|
help:
|
||
|
$(ECHO)
|
||
|
$(ECHO) "Prepare the Fiasco base repository"
|
||
|
$(ECHO)
|
||
|
$(ECHO) "--- available commands ---"
|
||
|
$(ECHO) "prepare - download and extract the Fiasco source code"
|
||
|
$(ECHO) "clean - clean everything except downloaded archives"
|
||
|
$(ECHO) "cleanall - clean everything including downloaded archives"
|
||
|
$(ECHO)
|
||
|
|
||
|
$(DOWNLOAD_DIR)/$(FIASCO_ARCHIVE):
|
||
|
$(ECHO) "downloading source code to '$(DOWNLOAD_DIR)/'"
|
||
|
$(VERBOSE)mkdir -p $(DOWNLOAD_DIR)
|
||
|
$(VERBOSE)wget -c $(FIASCO_URI) -O $@
|
||
|
|
||
|
$(CONTRIB_DIR): $(DOWNLOAD_DIR)/$(FIASCO_ARCHIVE)
|
||
|
$(ECHO) "unpacking source code to '$(CONTRIB_DIR)/'"
|
||
|
$(VERBOSE)tar xjf $<
|
||
|
$(VERBOSE)mv 3rd $@
|
||
|
$(VERBOSE)touch $@
|
||
|
|
||
|
prepare: $(CONTRIB_DIR)
|
||
|
|
||
|
clean:
|
||
|
$(VERBOSE)rm -rf $(CONTRIB_DIR)
|
||
|
|
||
|
cleanall: clean
|
||
|
$(VERBOSE)rm -rf $(DOWNLOAD_DIR)
|