Make the __FILE__ and __LINE__ part of the log message.
[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) $<