
#   Makefile for config and clock	AZTEC C, +L (32 bit ints)
#
#   NOTE:  I rely on a precompiled include file.  If you do not have such
#   a file, it should not be too hard to add the appopriate #include's...
#   my precompiled include files (precompiled under +L and +H) has only
#   the sub-directory Amiga includes  (*/*.h).

SYMS=	include:symbols.m
SYMC=	include:local/makesymbols.c
CFLAGS= +L +I$(SYMS)


all:	$(SYMS) config clock

config:     config.o
    ln +Q config.o -lc32

clock:	    clock.o
    ln +Q clock.o -lc32

$(SYMS):    $(SYMC)
    make -f include:local/Makefile


