Created
November 19, 2015 07:52
-
-
Save orip/9a1de4926c374a4485a5 to your computer and use it in GitHub Desktop.
clang++ Makefile for https://github.com/Microsoft/pict
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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