### # probably should edit Makefile.so instead of this... ### # create tmp/Makefile and run it all: if [ ! -d tmp ]; then mkdir tmp; fi find nf rf -type f -print |\ awk 'BEGIN { printf("SRC="); n=0; } \ {++n; if(n>7) { printf("\\\n\t"); n=0; } printf("%s ",$$0); } \ END { printf("\n\n"); }' > tmp/Makefile cat Makefile.so >> tmp/Makefile # make -f tmp/Makefile make -f tmp/Makefile doc: all cd doc && make install: make -f Makefile.so install clean: make -f Makefile.so clean clobber: make -f Makefile.so clobber update: find . -type f -cnewer NEW ! -name ss ! -name simplex_test -print | tar cvf - -T- --no-recursion | gzip >../update.tar.gz dist: -ssh fog.misty.com 'cd src/ss && gzip -d | tar xvpf -' < ../update.tar.gz mv NEW NEW.OLD touch NEW