CXX = g++ LIBS = -lgd -lm INSTALLDIR = ../windows PROGRAMS = yliluoma_ordered_dither_1a.exe \ yliluoma_ordered_dither_1ba.exe \ yliluoma_ordered_dither_1bb.exe \ yliluoma_ordered_dither_1c.exe \ yliluoma_ordered_dither_1d.exe \ yliluoma_ordered_dither_2a.exe \ yliluoma_ordered_dither_2b.exe \ yliluoma_ordered_dither_3a.exe \ adobelike_pattern_dither.exe .SUFFIXES: .cpp .exe all: $(PROGRAMS) .cpp.exe: $(CXX) $< -fopenmp -o $@ $(LIBS) .PHONY: clean clean: rm -f *.exe rm -f *.o .PHONY: install install: mv *.exe $(INSTALLDIR)