Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.35 KB | None | 0 0
  1. #
  2. # Makefile
  3. #
  4. # David J. Malan
  5. # malan@harvard.edu
  6. #
  7.  
  8. all: bounce button checkbox click cursor label slider text window
  9.  
  10. bounce: bounce.c Makefile
  11.     clang -ggdb3 -Ispl/include -O0 -std=c99 -Wall -Werror -o bounce bounce.c -Lspl/lib -lcs -lm -m32
  12.  
  13. button: button.c Makefile
  14.     clang -ggdb3 -Ispl/include -O0 -std=c99 -Wall -Werror -o button button.c -Lspl/lib -lcs -lm -m32
  15.  
  16. checkbox: checkbox.c Makefile
  17.     clang -ggdb3 -Ispl/include -O0 -std=c99 -Wall -Werror -o checkbox checkbox.c -Lspl/lib -lcs -lm -m32
  18.  
  19. click: click.c Makefile
  20.     clang -ggdb3 -Ispl/include -O0 -std=c99 -Wall -Werror -Wno-unused-variable -o click click.c -Lspl/lib -lcs -lm -m32
  21.  
  22. cursor: cursor.c Makefile
  23.     clang -ggdb3 -Ispl/include -O0 -std=c99 -Wall -Werror -o cursor cursor.c -Lspl/lib -lcs -lm -m32
  24.  
  25. label: label.c Makefile
  26.     clang -ggdb3 -Ispl/include -O0 -std=c99 -Wall -Werror -o label label.c -Lspl/lib -lcs -lm -m32
  27.  
  28. slider: slider.c Makefile
  29.     clang -ggdb3 -Ispl/include -O0 -std=c99 -Wall -Werror -o slider slider.c -Lspl/lib -lcs -lm -m32
  30.  
  31. text: text.c Makefile
  32.     clang -ggdb3 -Ispl/include -O0 -std=c99 -Wall -Werror -o text text.c -Lspl/lib -lcs -lm -m32
  33.  
  34. window: window.c Makefile
  35.     clang -ggdb3 -Ispl/include -O0 -std=c99 -Wall -Werror -o window window.c -Lspl/lib -lcs -lm -m32
  36.  
  37. clean:
  38.     rm -f *.o core bounce button checkbox click cursor label slider text window
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement