mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-23 04:15:31 +00:00
10 lines
144 B
Makefile
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
|