CC=cc
LINK=link
CC_FLAGS=-throwback -Wa -fa -Otime -IC:
LD_FLAGS=C:o.stubs
OBJS=setver.o

## Rule Patterns ##

.SUFFIXES:	.c .o

.c.o:
	$(CC) $(CC_FLAGS) -c -o $@ $<

# Static dependencies:

setver: $(OBJS)
	$(LINK) $(LD_FLAGS) $(OBJS) -o setver
	copy setver ^.^.setver ~CF~V

clean:
	-ifthere o.* then wipe o.* ~CFR~V
	-ifthere setver then wipe setver ~CFR~V
