# WARNING: The official pc68.c source is currently
# on gregorio:/src/sun/cmd/pc68/pc68.c

#include ../../buildprefix
.SUFFIXES:
.SUFFIXES: .b .c
C68FLAGS = -v${Xx}V -Dis68 -Dusebcode

pc68: pc68.b
	cc68 $(C68FLAGS) pc68.b -r -o pc68
clean:
	rm -f *.BAK *.CKP pc68 .emacs* *.b

.c.b:
	cc68 $(C68FLAGS) -c $*.c

install: pc68
	$(NETINSTALL) -p pc68 /usr/sun/$(Xx)Vboot
