home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 634.lha / SunClock_1.0 / Makefile < prev    next >
Encoding:
Makefile  |  1992-01-12  |  634 b   |  25 lines

  1. #
  2. # Makefile for SunClock
  3. #
  4. # Source debugging options:
  5. # CFLAGS = -bs
  6. # LNFLAGS = -g 
  7. #
  8. CFLAGS = -fa -su -ss -sf -wc -wp 
  9. # -hi /includes.pre
  10. #
  11. # These options mean:
  12. # -fa use amiga floating point
  13. # -su pick register vars
  14. # -ss eliminate duplicate strings
  15. # -sf use faster for() code at expense of sdb
  16. # -wp warn me if there are any function calls without prototypes
  17. # -wc Don't warn me about (char *) to (unsigned char *) conversions
  18. # -hi use /includes.pre for precompiled includes.
  19. #
  20. OBJECTS = main.o astro.o sun.o Timer.o Options.o Menus.o \
  21.     iconimage.o mainimage.o
  22.  
  23. SunClock: $(OBJECTS)
  24.     ln -o SunClock +cd $(OBJECTS) -lma -lc
  25.