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

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

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

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

.INIT: 
    cdir o

# Dynamic dependencies:
o.poly: c.poly
