cpp-peglib/test/Makefile

10 lines
144 B
Makefile
Raw Normal View History

2015-02-08 01:52:26 +00:00
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