
#include ../../buildprefix

#ifdef X
C68FLAGS = -O -V -vx -I../../libc/include/mi -I../../libc/include/m68k
#else X
C68FLAGS = -O -V
#endif X
LIBS = 

biopsy :  biopsy.c 
	cc68 $(C68FLAGS) -r -o biopsy biopsy.c $(LIBS) 

install: biopsy
#ifdef X
	netinstall -p -x "biopsy" /usr/sun/xVboot
#else X
	netinstall -p "biopsy" /usr/sun/Vboot
#endif X

clean:
	rm -f *.CKP *.BAK *.b biopsy

build:
	buildmake

xbuild:
	buildmake -DX=1
