#CXX=clang++ INCLUDES += -I. CXXFLAGS += -std=c++14 -O3 -Wall -Wextra -Wfatal-errors -Werror -pedantic -Wno-deprecated-declarations $(INCLUDES) all: switchchain switchchain_exponent switchchain_initialtris switchchain_dsp switchchain: switchchain_exponent: switchchain_initialtris: switchchain_dsp: # target : dep1 dep2 dep3 # $@ = target # $< = dep1 # $^ = dep1 dep2 dep3