Skip to content

Commit

Permalink
Add 'make help'
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Dec 12, 2013
1 parent 45131da commit 034bbca
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions mk/lib.mk
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,27 @@ $(foreach test, $(INSTALL_TESTS), $(eval $(call run-install-test,$(test))))


all: $(programs_list) $(libs_list)


help:
@echo "The following targets are available:"
@echo ""
@echo " default: Build default targets"
@echo " install: Install into \$$(prefix) (currently set to '$(prefix)')"
@echo " clean: Delete generated files"
@echo " dryclean: Show what files would be deleted by 'make clean'"
ifdef PACKAGE_NAME
@echo " dist: Generate a source distribution"
endif
ifdef programs_list
@echo ""
@echo "The following programs can be built:"
@echo ""
@for i in $(programs_list); do echo " $$i"; done
endif
ifdef libs_list
@echo ""
@echo "The following libraries can be built:"
@echo ""
@for i in $(libs_list); do echo " $$i"; done
endif

0 comments on commit 034bbca

Please sign in to comment.