
DEFINES = 
THROWBACK = -throwback
CFLAGS  = -c -apcs 3/32/noswst -fz -depend !Depend $(DEFINES) $(THROWBACK)
AFLAGS  = -apcs 3/32/noswst -depend !Depend $(THROWBACK)
LDFLAGS = -bin

# Object files we're linking together
OBJS = o.version

bin: $(OBJS)
    link -o $@ $(LDFLAGS) $(OBJS)

.c.o:
    cc $(CFLAGS) -o $@ $<
.s.o:
    objasm $(AFLAGS) -o $@ $<

.INIT: 
    cdir o

# Dynamic dependencies:
