Guest User

Untitled

a guest
Oct 10th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.15 KB | None | 0 0
  1. CC = gcc -Wall -ansi
  2.  
  3. all:
  4.     $(CC) fractal.c -o fractal -lGL -lGLU `sdl-config --cflags --libs`
  5.  
  6. clean:
  7.     @echo Cleaning up...
  8.     @rm fractal
  9.     @echo Done.
Add Comment
Please, Sign In to add comment