Guest User

Untitled

a guest
Nov 19th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. CFLAGS="-g -Wall"
  2. DEPS="foo.o bar.o baz.o"
  3.  
  4. TARGET=progname
  5.  
  6. .PHONY: clean all
  7.  
  8. $(TARGET): $(DEPS)
  9. $(CXX) -o $(TARGET) $(CFLAGS) $(CXXFLAGS) $(DEPS)
  10.  
  11. clean:
  12. rm $(TARGET) $(DEPS)
  13.  
  14. all: $(TARGET)
Add Comment
Please, Sign In to add comment