CXX = g++ LIBS = -static -lstdc++ -lgcc -lwinpthread -lm PROGRAMS = yodither1.exe yodither3.exe yodither4.exe .SUFFIXES: .cpp .exe all: $(PROGRAMS) .cpp.exe: $(CXX) -O3 $< -fopenmp -o $@ $(LIBS) .PHONY: clean clean: rm -f *.exe rm -f *.o