Advertisement
Guest User

Makefile for Hexagon and Star

a guest
Feb 22nd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.46 KB | None | 0 0
  1. CC=clang++
  2.  
  3. CFLAGS=-c -Wall
  4.  
  5. all: hexagon star
  6.  
  7. hexagon: hexagon.o turtle.o turtleSVG.o
  8.     $(CC) hexagon.o turtle.o turtleSVG.o -o hexagon
  9.  
  10. star: star.o turtle.o turtleSVG.o
  11.     $(CC) star.o turtle.o turtleSVG.o -o star
  12.  
  13. hexagon.o: hexagon.cc
  14.     $(CC) $(CFLAGS) hexagon.cc
  15.  
  16. star.o: star.cc
  17.     $(CC) $(CFLAGS) star.cc
  18.  
  19. turtle.o: turtle.cc
  20.     $(CC) $(CFLAGS) turtle.cc
  21.  
  22. turtleSVG.o: turtleSVG.cc
  23.     $(CC) $(CFLAGS) turtleSVG.cc
  24.  
  25. clean:
  26.     rm -rf *o hexagon star
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement