Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.17 KB | None | 0 0
  1. CC = gcc
  2. CFLAGS = -g -pedantic -Wall -ansi
  3.  
  4. all:    sim
  5.  
  6. sim:    sim.o nCr.o
  7.     $(CC) $(CFLAGS) -o sim sim.o
  8.  
  9. sim.o:  sim.c
  10.     $(CC) $(CFLAGS) -c sim.c
  11.  
  12. clean:
  13.     rm -f sim sim.o
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement