
#include ../../buildprefix

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

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

install: destroy
#ifdef X
	netinstall -x -p destroy /usr/sun/xVboot
#else X
	netinstall -p "destroy" /usr/sun/Vboot
#endif X
clean:
	rm -f *.CKP *.BAK *.b destroy

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


sources:
	co buildfile destroy.c

rcs:
	ci -f buildfile destroy.c
