home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Graphics / Anim2gif-GUI / WhirlGif / src.202 / Makefile next >
Makefile  |  1997-07-07  |  1KB  |  62 lines

  1. # Makefile for whirlgif utility
  2. #####################################
  3. # Choose your favorite compiler.
  4. #
  5. # GNU C
  6. CC = gcc
  7. #
  8. # standard
  9. #CC = cc
  10.  
  11. #####################################
  12. # Optional flags and libs
  13. #
  14. #  GNU C; Amiga-gcc from ADE/GeekGadgets (ftp.ninemoons.com/pub/geekgadgets/)
  15. OPTIONS= -s 
  16.  
  17. # standard
  18. #OPTIONS = -O
  19.  
  20. # - use these for a "ixemul-clean" whirlgif.
  21. #LIBS   = -noixemul -lamiga
  22.  
  23. # - this is for an ixemul'ish whirlgif
  24. LIBS   =
  25.  
  26.  
  27. #####################################
  28. # Optimization flags
  29. #
  30. #  GNU C
  31. #OPTIMIZE= -fcombine-regs -O
  32.  
  33. # ADE-gcc
  34. OPTIMIZE= -fstrength-reduce -O
  35.  
  36. # standard
  37. #OPTIMIZE = -O
  38.  
  39.  
  40. #####################################
  41. # Debug flags
  42. #
  43. #DEBUG = -g
  44. #DEBUG = -ggdb
  45.  
  46. #####################################
  47. # CFLAGS
  48. #        If you need <strings.h>, add -DUSE_STRINGS_H
  49. #
  50. CFLAGS    =  $(DEBUG) $(OPTIMIZE) $(OPTIONS) $(LIBS)
  51.  
  52. all: whirlgif
  53.  
  54. whirlgif:
  55.     $(CC) $(CFLAGS) -o whirlgif whirlgif.c
  56.  
  57.  
  58. # DO NOT DELETE THIS LINE AND DEPENDECIES BELOW
  59.  
  60. whirlgif: whirlgif.h
  61. whirlgif: whirlgif.c
  62.