snp-lab-code/Makefile

33 lines
1.0 KiB
Makefile
Raw Normal View History

2020-02-06 23:41:26 +01:00
EMPTY :=
SPACE := $(EMPTY) $(EMPTY)
NL := $(EMPTY)\\n$(EMPTY)
LABS := $(sort $(wildcard P[0-9][0-9]*))
EXAMPLE := $(if $(firstword $(LABS)),$(firstword $(LABS)),"Pxx")
2020-02-06 23:41:26 +01:00
default:
@echo "**** SNP Labs ****"
2020-02-06 23:41:26 +01:00
@echo "$(subst $(SPACE),$(NL),$(LABS))"
@echo ""
@echo "**** Prerequisites ****"
@echo "1. Change into the testlib directory"
@echo " cd testlib"
@echo "2. Build and install the library, e.g."
@echo " make clean"
@echo " make default"
@echo " make test"
@echo " make install"
2020-02-06 23:43:11 +01:00
@echo " Caution: make sure the tests and installation does not produce any error."
2020-02-06 23:41:26 +01:00
@echo ""
@echo "**** How to build and run a lab? ****"
@echo "1. Change into the respective directory, e.g."
@echo " cd $(EXAMPLE)"
2020-02-06 23:41:26 +01:00
@echo "2. Build the lab, e.g."
@echo " make"
@echo " The resulting executable is located in the bin folder."
@echo "3. Build and run the tests, e.g."
@echo " make test"
@echo "Notes:"
@echo "- You may cleanup the builds, e.g."
@echo " make clean"