Advertisement
Lawnknome

Untitled

Apr 1st, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.26 KB | None | 0 0
  1. CXX = g++
  2. OBJS = lab1-2.o f.o g.o
  3. SRCS = lab1-2.cpp f.cpp g.cpp
  4. HEADERS = f.h g.h
  5. #Target: Dependencies
  6.     #rules to build
  7.  
  8. lab1-1: lab1-1.cpp
  9.     g++ lab1-1.cpp -o lab1-1
  10.  
  11. lab1-2: lab1-2.cpp f.cpp g.cpp f.h g.h
  12.     g++ lab1-2.cpp f.cpp g.cpp f.h g.h -o lab1-2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement