mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
26 lines
398 B
Makefile
26 lines
398 B
Makefile
#
|
|
# \brief Download, and unpack Linux
|
|
# \author Sebastian Sumpf
|
|
# \date 2014-05-20
|
|
#
|
|
|
|
VERBOSE ?= @
|
|
ECHO := @echo
|
|
|
|
#
|
|
# Print help information by default
|
|
#
|
|
help::
|
|
|
|
prepare:
|
|
$(VERBOSE)../../tool/ports/prepare_port dde_linux
|
|
|
|
help::
|
|
$(ECHO)
|
|
$(ECHO) "Prepare the dde_linux repository"
|
|
$(ECHO)
|
|
$(ECHO) "--- available commands ---"
|
|
$(ECHO) "prepare - checkout upstream source codes"
|
|
$(ECHO)
|
|
|