DawidS28

Untitled

Apr 11th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.14 KB | None | 0 0
  1. CC = gcc
  2. CFLAGS = -Wall -O2 -ansi -pedantic -std=c99 -lm
  3. TARGETS = main
  4.  
  5. all : $(TARGETS)
  6.  
  7. .PHONY: clean
  8.  
  9. clean:
  10.         $(RM) $(TARGETS)
Advertisement
Add Comment
Please, Sign In to add comment