home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-01-12 | 634 b | 25 lines |
- #
- # Makefile for SunClock
- #
- # Source debugging options:
- # CFLAGS = -bs
- # LNFLAGS = -g
- #
- CFLAGS = -fa -su -ss -sf -wc -wp
- # -hi /includes.pre
- #
- # These options mean:
- # -fa use amiga floating point
- # -su pick register vars
- # -ss eliminate duplicate strings
- # -sf use faster for() code at expense of sdb
- # -wp warn me if there are any function calls without prototypes
- # -wc Don't warn me about (char *) to (unsigned char *) conversions
- # -hi use /includes.pre for precompiled includes.
- #
- OBJECTS = main.o astro.o sun.o Timer.o Options.o Menus.o \
- iconimage.o mainimage.o
-
- SunClock: $(OBJECTS)
- ln -o SunClock +cd $(OBJECTS) -lma -lc
-