branch: elpa/vm commit e8835dbbbc574569bab0715a3f160bef34772b79 Author: Mark Diekhans <ma...@ucsc.edu> Commit: Mark Diekhans <ma...@ucsc.edu>
remove no longer used Makefile --- Makefile.in | 2 +- configure.ac | 2 +- src/Makefile.in | 43 ------------------------------------------- 3 files changed, 2 insertions(+), 45 deletions(-) diff --git a/Makefile.in b/Makefile.in index ac8d7a2542..04861e0c90 100644 --- a/Makefile.in +++ b/Makefile.in @@ -15,7 +15,7 @@ srcdir = @srcdir@ datarootdir = @datarootdir@ docdir = @docdir@ -SUBDIRS = lisp info src pixmaps +SUBDIRS = lisp info pixmaps # the list of source (documentation) files SOURCES = NEWS diff --git a/configure.ac b/configure.ac index 1d5955ddfd..1afbfed296 100644 --- a/configure.ac +++ b/configure.ac @@ -244,7 +244,7 @@ AC_INIT([VM],[8.3.x],[viewmail-i...@nongnu.org]) AC_COPYRIGHT([Copyright (C) 2009-2010 VM Development Team <v...@lists.launchpad.net>]) AC_CONFIG_SRCDIR([configure.ac]) -AC_CONFIG_FILES([Makefile lisp/Makefile info/Makefile src/Makefile pixmaps/Makefile vm-load.el]) +AC_CONFIG_FILES([Makefile lisp/Makefile info/Makefile pixmaps/Makefile vm-load.el]) # Common system utilities checking: AC_PROG_MAKE_SET diff --git a/src/Makefile.in b/src/Makefile.in deleted file mode 100644 index 6a6b3971a0..0000000000 --- a/src/Makefile.in +++ /dev/null @@ -1,43 +0,0 @@ -@SET_MAKE@ - -############################################################################## -# no csh please -SHELL = /bin/sh - -SOURCES = $(wildcard *.c) - -OBJECTS = $(SOURCES:.c=.o) - -############################################################################## -# location of required programms -MKDIR = @MKDIR@ -RM = @RM@ -INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ - -prefix = @prefix@ -exec_prefix = @exec_prefix@ -srcdir = @srcdir@ -bindir = @bindir@ - -############################################################################## -all: $(SOURCES:.c=) - -install: - @mkdir -p -m 0755 "$(DESTDIR)$(bindir)"; \ - for i in $(SOURCES:.c=) ; do \ - echo "Installing $$i in $(DESTDIR)$(bindir)" ; \ - $(INSTALL_PROGRAM) $$i "$(DESTDIR)$(bindir)" ; \ - done ; - @echo VM helper binaries successfully installed\! - -############################################################################## -Makefile: @srcdir@/Makefile.in - cd ..; ./config.status - -############################################################################## -clean: - -$(RM) -f $(SOURCES:.c=) - -distclean: clean - -$(RM) -f Makefile