# make sure SRMOPTS null
0 SRMOPTS=
0 export SRMOPTS

# some simple options
0 srm -f Try1.out -Idir -oexe -r main -C -O -L-T -R arg -Z clean.me
0 cmp Try1.std Try1.out

# smart makefile
0 srm -f Try2.out -s
0 cmp Try2.std Try2.out

# smart makefile using different cmp function
0 srm -f Try3.out -S srcmp
0 cmp Try3.std Try3.out

# try changing main resource
0 srm -f Try4.out -r node
0 cmp Try4.std Try4.out

# try setting options with SRMOPTS
# (builds some illegal commands.  don't try this at home, boys and girls.)
0 SRMOPTS="-Camel -Lion -Rhinocerous -Zebra"
0 srm -f Try5.out -Zoology
0 SRMOPTS=
0 cmp Try5.std Try5.out

0 rm -rf Interfaces Makefile core exe *.out *.[chos]
