diff options
author | Ludovic Courtes | 2006-01-15 10:12:33 +0000 |
---|---|---|
committer | Ludovic Courtes | 2006-01-15 10:12:33 +0000 |
commit | 2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9 (patch) | |
tree | 2827aef0d0b32a0e87c178edf42ba667fe52c258 /emacs | |
parent | a1b1ba4d3edd2a5326dfb82527c4bdcdef29284a (diff) | |
download | skribilo-2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9.tar.gz skribilo-2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9.tar.lz skribilo-2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9.zip |
Cleaned up the Arch inventory and removed old useless makefiles.
Cleaned up the Arch inventory and removed old useless makefiles.
git-archimport-id: lcourtes@laas.fr--2005-mobile/skribilo--devel--1.2--patch-23
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/Makefile | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/emacs/Makefile b/emacs/Makefile deleted file mode 100644 index 52074cb..0000000 --- a/emacs/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -#*=====================================================================*/ -#* serrano/prgm/project/skribe/emacs/Makefile */ -#* ------------------------------------------------------------- */ -#* Author : Manuel Serrano */ -#* Creation : Sat Oct 25 08:20:06 2003 */ -#* Last change : Thu Jan 1 16:46:32 2004 (serrano) */ -#* Copyright : 2003-04 Manuel Serrano */ -#* ------------------------------------------------------------- */ -#* Skribe emacs Makefile */ -#*=====================================================================*/ -include ../etc/Makefile.config -include ../etc/$(SYSTEM)/Makefile.skb - -#*---------------------------------------------------------------------*/ -#* pop */ -#*---------------------------------------------------------------------*/ -.PHONY: pop - -pop: - @ echo emacs/skribe.el.in emacs/Makefile - -#*---------------------------------------------------------------------*/ -#* install/uninstall */ -#*---------------------------------------------------------------------*/ -.PHONY: install uninstall - -install: - $(MAKE) install-$(SYSTEM) -uninstall: - $(MAKE) uninstall-$(SYSTEM) - -install-bigloo: - if [ "$(EMACSDIR) " != " " ]; then \ - if [ -d $(EMACSDIR) ]; then \ - cp skribe.el $(EMACSDIR) && chmod $(BMASK) $(EMACSDIR)/skribe.el; \ - fi \ - fi -uninstall-bigloo: - if [ "$(EMACSDIR) " != " " ]; then \ - if [ -d $(EMACSDIR) ]; then \ - $(RM) -f $(EMACSDIR)/skribe.el; \ - fi \ - fi - -install-stklos: -uninstall-stklos: - -#*---------------------------------------------------------------------*/ -#* clean/distclean */ -#*---------------------------------------------------------------------*/ -.PHONY: clean distclean - -clean: -distclean: clean - $(RM) -f skribe.el |