# This is a sample PROGRAM template file for OPUS MKMF 3.0

# MKMF automatically maintains the HDRS, EXTHDRS, OBJS and SRCS macros.
# The PROGRAM macro is the name of the executable to be constructed.
#
# The EXTHDRS, HDRS, and SRCS macro are not explicitly used in this makefile
# but you may have a need for them elsewhere (e.g. for revision control).
#

LIB         = $(MICRO)\LIB
INCLUDE     = $(MICRO)\H
IBC	    = $(MICRO)\IBC
BOARDS	    = $(MICRO)\IBC\BOARDS
HARDWARE    = $(MICRO)\HARDWARE\IBC

INCLUDES    = $(INCLUDE), $(HARDWARE), $(IBC), $(BOARDS)

.SUFFIXES : .obj .c .s .h

CC              = C:\C96\BIN\IC96
CFLAGS          = debug searchinclude ($(INCLUDES)) registers(20) optimize(3) REGCONSERVE(FSCOPE)

.c.obj :
        $(CC)   $*.c  $(CFLAGS)

.s.obj:
        $(AS)  $*.s $(ASFLAGS)


FALMOUTH.OBJ : FALMOUTH.C $(INCLUDE)/FALMOUTH.H
