
#include ../../buildprefix

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

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

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

clean:
	rm -f *.CKP *.BAK *.b .emacs* stuffboot

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

build:
	buildmake

xbuild:
	buildmake -DX=1
