#ifdef X
C68FLAGS = -O -V -vx
#else X
C68FLAGS = -O -V
#endif X
LIBS = 

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

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

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

backup:
	cd ..; cpdir biopsy ../../Vbackup/cmds/biopsy

build:
	buildmake

xbuild:
	buildmake -DX=1
