Skip to content

Instantly share code, notes, and snippets.

@orip
Created November 19, 2015 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orip/9a1de4926c374a4485a5 to your computer and use it in GitHub Desktop.
Save orip/9a1de4926c374a4485a5 to your computer and use it in GitHub Desktop.
clang++ Makefile for https://github.com/Microsoft/pict
CXX=clang++
# suppress all warnings :-(
CXXFLAGS=-std=c++11 -stdlib=libc++ -Iapi -w
TARGET=pict
all:
$(CXX) $(CXXFLAGS) api/*cpp cli/*cpp -o $(TARGET)
test:
cd test; perl test.pl ../$(TARGET) rel.log
.PHONY: all test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment