# Makefile for gw/nets for the 68000

.SUFFIXES:	.b .o .lst .c .s .h .sh .mak
CC =	cc68 -c -O -I../../sys/include
LIB =	../../68/nlib.a

all:	vii.b ether.b ares.b

ares.b: ../ares.c ../ares.h ../ether.h
ether.b: ../ether.c ../ether.h
vii.b: ../vii.c ../vii.h

.mak.b:
	cd ..; ${CC} $*.c
	mv ../$@ $@
	ar r ${LIB} $@
