Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. CC = gcc
  2. CFLAGS = -std=c99 -pedantic-errors -Wall
  3.  
  4. some_target:
  5. P = some_target
  6.  
  7. some_other_target:
  8. P = some_other_target
  9. ...
  10. #common compilation command
  11. $(CC) $(CFLAGS) $(P).c -o $(P).o
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement