# rdist file to distribute SNePS various hosts
#
# hc, May 2, 91
#

# Host that needs SNePS distributions:
#
SNEPS_HOST = pegasus
SNEPS_INSTALLER = snwiz

SNEPS_SOURCE    = ~snwiz/src/Sneps21/All-Lisps/Master
SNEPS_TARGET    = ~snwiz/src/Sneps21/All-Lisps/Temp

SNEPS_EXCEPT_PAT = (.bin\$ .sbin\$ .fasl\$ .xld\$ .sparcf\$ ,v\$ .\~\$)
SNEPS_SMALL_EXCEPT_PAT = (.bin\$ .sbin\$ .fasl\$ .xld\$ .sparcf\$ ,v\$ .\~\$
                          .ps\$ .dvi\$ compil[^/]*log\$)

sneps-dist:
${SNEPS_SOURCE}/* -> ${SNEPS_INSTALLER}@${SNEPS_HOST}
	install -R  ${SNEPS_TARGET};
        except_pat ${SNEPS_EXCEPT_PAT};

#For machines with restricted disk space:
sneps-small-dist:
${SNEPS_SOURCE}/* -> ${SNEPS_INSTALLER}@${SNEPS_HOST}
	install -R  ${SNEPS_TARGET};
        except_pat ${SNEPS_SMALL_EXCEPT_PAT};



