Initial revision
authormorioka <morioka>
Wed, 4 Dec 1996 05:03:04 +0000 (05:03 +0000)
committermorioka <morioka>
Wed, 4 Dec 1996 05:03:04 +0000 (05:03 +0000)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..6bdd42a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,30 @@
+#
+# $Id: Makefile,v 1.1 1996-12-04 05:03:04 morioka Exp $
+#
+
+EMACS  = emacs
+FLAGS   = -batch -q -no-site-file -l SINFO-MK
+
+PREFIX =
+
+FILES  = sinfo/Makefile sinfo/SINFO-* \
+               sinfo/*.el \
+               tl/*.el tl/TL-ELS       \
+               emu/*.el emu/EMU-ELS
+
+TARFILE = sinfo-0.1.tar
+
+
+elc:
+       $(EMACS) $(FLAGS) -f compile-sinfo
+
+install:       elc
+       $(EMACS) $(FLAGS) -f install-sinfo $(PREFIX)
+
+
+clean:
+       -rm *.elc
+
+
+tar:
+       cd ..; tar cvf $(TARFILE) $(FILES); gzip -best $(TARFILE)