mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
acf00c29c3
Issue #1082
28 lines
536 B
Makefile
Executable File
28 lines
536 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
#
|
|
# \brief Tool for listing ports
|
|
# \author Norman Feske
|
|
# \date 2014-05-07
|
|
#
|
|
|
|
#
|
|
# Determine Genode base directory based on the known location of the
|
|
# 'create_builddir' tool within the Genode source tree
|
|
#
|
|
GENODE_DIR := $(realpath $(dir $(MAKEFILE_LIST))/../..)
|
|
|
|
include $(GENODE_DIR)/tool/ports/mk/front_end.inc
|
|
|
|
usage:
|
|
@$(ECHO)
|
|
@$(ECHO) "--- list available ports ---"
|
|
@$(ECHO) "usage: list"
|
|
@$(ECHO)
|
|
|
|
include $(PORT)
|
|
|
|
$(TARGET):
|
|
$(VERBOSE)for i in $(sort $(notdir $(_PORTS:.port=))); do\
|
|
echo $$i; done
|