Files
piphoto/Makefile

16 lines
413 B
Makefile
Raw Normal View History

2017-07-23 22:53:02 +00:00
all: piphoto
2017-08-13 08:44:49 -07:00
objects = piphoto.o color.o lut.o util.o
2017-08-06 19:39:11 +00:00
piphoto: $(objects) Makefile
2017-08-10 13:51:39 -07:00
clang-3.9 -O3 -g -Weverything -Werror --std=c++1z --stdlib=libc++ -o piphoto $(objects) -lc++ -lunwind -lpng
2017-08-06 19:39:11 +00:00
%.o: %.cc *.h Makefile
2017-08-10 13:51:39 -07:00
clang-3.9 -O3 -g -Weverything -Werror -Wno-padded -Wno-c++98-compat -Wno-c++98-c++11-compat-pedantic --std=c++1z --stdlib=libc++ -c -o $@ $<
2017-07-23 22:53:02 +00:00
run: piphoto
./piphoto
clean:
2017-08-06 19:39:11 +00:00
rm -f piphoto *.o