## A cheesy Makefile LN = /bin/ln all:: @echo "There are currently two targets you probably want," @echo "install and upgrade." install:: @cd .. ; $(LN) -s elisp/init.el .emacs @cd .. ; $(LN) -s elisp .xemacs @xemacs -batch -eval "(byte-recompile-directory \"~/elisp/\" 0)" clean:: @rm *.elc @cd .. ; rm .emacs @cd .. ; rm .xemacs upgrade: clean @cd .. ; wget -O elisp.tar.gz http://veggie.wesleyan.edu/~trey/elisp.tar.gz @cd .. ; tar zxpvf elisp.tar.gz @make install upload:: @cd ~ ; scp elisp.tar.gz trey@veggie.wesleyan.edu:~/public_html/ war:: @echo "Make love, not war"