mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
23 lines
405 B
Makefile
23 lines
405 B
Makefile
#
|
|
# \brief Download and setup OSS sources
|
|
# \author Sebastian Sumpf
|
|
# \date 2012-08-30
|
|
#
|
|
|
|
VERBOSE ?= @
|
|
ECHO = @echo
|
|
|
|
#
|
|
# Print help information by default
|
|
#
|
|
help:
|
|
$(ECHO)
|
|
$(ECHO) "Download integrate OSS sources with Genode"
|
|
$(ECHO)
|
|
$(ECHO) "--- available commands ---"
|
|
$(ECHO) "prepare - download and integrate OSS source code"
|
|
$(ECHO)
|
|
|
|
prepare:
|
|
$(VERBOSE)../../tool/ports/prepare_port oss
|