
#include ../../buildprefix

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

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

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

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

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


