Advertisement
Guest User

Untitled

a guest
May 25th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. CXX = clang++-3.9
  2. INCDIR = -I /usr/include/c++/v1 -I /home/linuxbrew/.linuxbrew/opt/boost@1.60/include
  3. CFLAGS = -O2
  4. LIBS = -L /usr/lib -L /home/linuxbrew/.linuxbrew/opt/boost@1.60/lib
  5. OBJS = a.out
  6. STD = c++14
  7. STDLIB = libc++
  8. WARNS = -Werror -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic
  9.  
  10. a.out: hello.cpp
  11. $(CXX) $(INCDIR) $(LIBS) -std=$(STD) -stdlib=$(STDLIB) $(CFLAGS) $(WARNS) -o $(OBJS) $<
  12.  
  13. clean:
  14. rm *.out
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement