
#   Note:  In terms of compiling, if you do not have my latest
#   support library you may have to do some hacking to get the
#   code to link

CFLAGS= +L +Ivd0:include/symbols.m
OBJS= globals.o command.o keyboard.o main.o text1.o text2.o subs.o

c.o:
    cc $(CFLAGS) -o $@ $*.c

all: $(OBJS)
    ln +Q $(OBJS) -lmyl32 -lc32 -O c:dme

arc:
    -delete ram:dme.arc
    arc a ram:dme.arc dme.doc TODO c:dme

src:
    -delete ram:dmesrc.arc
    arc a ram:dmesrc makefile defs.h globals.c command.c keyboard.c main.c text1.c text2.c subs.c

