cpp-peglib/test/Makefile
2015-02-07 20:52:26 -05:00

10 lines
144 B
Makefile

CC = clang++
CCFLAGS = -std=c++11 -stdlib=libc++ -g
all : test
./test
test : test.cc ../peglib.h
$(CC) -o test $(CCFLAGS) -I.. -I. test.cc