[make][help] sort the list of projects

This commit is contained in:
Travis Geiselbrecht
2018-11-30 22:44:24 -08:00
parent 5d43aa25eb
commit 4ada3fc4a8

View File

@@ -44,7 +44,7 @@ PROJECTS:=$(shell basename -a $(PROJECTS))
.PHONY: list
list:
@echo 'List of all buildable projects: (look in project/ directory)'; \
for p in $(PROJECTS); do \
for p in $(sort $(PROJECTS)); do \
echo $$p; \
done