# Makefile for latex2slides # # It is mostly for my own use (build, make tarfiles, rpms, etc) # # You can still use "make; make install" if you want, # but I STRONGLY recommend running the "install" script instead # The sources are already built and ready for installation with this script SHELL = /bin/bash #### installation touch: touch latex2slides install: latex2slides ./install uninstall: latex2slides ./uninstall #### build - use at your own risk build: touch man specfile man: latex2slides cd man;\ ./mk_man_page specfile: latex2slides cd scripts;\ ./mk_spec_file #### packaging - use at your own risk release: tar rpm publish tar: build clean-all cd scripts;\ ./mk_tarfile rpm: build clean-all cd scripts;\ ./mk_rpm publish: cd scripts;\ ./mk_publish clean-all: clean rm -fR */.*.swp rm -f .install_info rm -f files.txt rm -f latex2slides*spec clean: rm -f scripts/mk_doc_*.txt