Advertisement
Guest User

Makefile

a guest
Feb 5th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.19 KB | None | 0 0
  1. all: box.exe
  2.  
  3. box.exe: box.o main.o
  4.     gcc -o box.exe box.o main.o -ggdb
  5.  
  6. box.o: box.c box.h
  7.     gcc -o box.o -c box.c -Wall -ggdb
  8.  
  9. main.o: main.c box.h
  10.     gcc -o main.o -c main.c -Wall -ggdb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement