.PHONY: all install clean CXXFLAGS += -O2 APP = HelloWorld CXXSOURCES = \ $(APP).cpp LIBS = -lsyllable $(APP): $(CXX) -o $(APP) $(CXXSOURCES) $(LIBS)