
# Precompiled header files
PRECOMPILED = -hi/includes.pre
DEBUGCFLAGS = -bs
DEBUGLNFLAGS = -g -w
CFLAGS = -su -ss -sf -wc -wp 
#
# These options mean:
# -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.
#

LHAFILES = README Makefile SPClock.c start.a68 nums2c.rexx nums \
			SPClock SPClock.info

spclock: spclock.o start.o
	ln +cd spclock.o start.o -m -lc

spclock.lha: $(LHAFILES)
	lharc u spclock.lha $(LHAFILES)

spclock.lha.uu: spclock.lha
	uuencode spclock.lha spclock.lha >spclock.lha.uu
