You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
394 B
Makefile
26 lines
394 B
Makefile
#
|
|
# \brief Download, and unpack iPXE
|
|
# \author Josef Soentgen
|
|
# \date 2014-05-20
|
|
#
|
|
|
|
VERBOSE ?= @
|
|
ECHO := @echo
|
|
|
|
#
|
|
# Print help information by default
|
|
#
|
|
help::
|
|
|
|
prepare:
|
|
$(VERBOSE)../../tool/ports/prepare_port dde_ipxe
|
|
|
|
help::
|
|
$(ECHO)
|
|
$(ECHO) "Prepare the dde_ipxe repository"
|
|
$(ECHO)
|
|
$(ECHO) "--- available commands ---"
|
|
$(ECHO) "prepare - checkout upstream source codes"
|
|
$(ECHO)
|
|
|