5b7e09608b996a261a7eaab401d8d2f872345d5d
[apple-ir-control.git] / Makefile
1 CCFLAGS := -g -std=c++11 -Wall -framework CoreFoundation -framework IOKit
2
3 ifndef DEBUG
4 CCFLAGS += -DNDEBUG
5 endif
6
7 apple-ir-control: apple-ir-control.cc
8 clang++ -o $@ $(CCFLAGS) $<