muddleftpd-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Muddleftpd-cvs] muddleftpd install-sh Makefile.in Makefile.defs...


From: Joerg Jaspert
Subject: [Muddleftpd-cvs] muddleftpd install-sh Makefile.in Makefile.defs...
Date: Sat, 26 Oct 2002 17:51:00 -0400

CVSROOT:        /cvsroot/muddleftpd
Module name:    muddleftpd
Branch:         dev-ganneff-autotools
Changes by:     Joerg Jaspert <address@hidden>  02/10/26 17:51:00

Removed files:
        .              : install-sh Makefile.in Makefile.defs COPYING 

Log message:
        * install-sh: Removed. Like COPYING this gets copied into the dir
        if we run autogen.sh, so no need for cvs.
        
        * COPYING: Deleted. Copied into build tree as soon as you run
        autogen.sh, we dont need it in CVS tree, we dont change, no need
        to have it version controlled. :)
        
        * modules/auth/authlibmud/Makefile.in,
        modules/auth/authlibmsql/Makefile.in,
        modules/auth/authlibmysql/Makefile.in,
        modules/auth/authlibsmb/Makefile.in: Removed
        
        * Makefile.defs: Removed.

Patches:
Index: muddleftpd/Makefile.in
diff -c muddleftpd/Makefile.in:1.3 muddleftpd/Makefile.in:1.4
*** muddleftpd/Makefile.in:1.3  Thu Oct 17 04:20:48 2002
--- muddleftpd/Makefile.in      Sun Oct 20 07:51:26 2002
***************
*** 26,61 ****
  # where info files should be stored
  INFODIR=$(prefix)/info
  
! all: bin docs
  
! docs:
!       $(MAKE) -C doc
  
! bin:
!       $(MAKE) -C src
  
  install:
!       $(MAKE) -C src install
!       $(MAKE) -C doc install
  
  clean:
!       $(MAKE) -C src clean
!       $(MAKE) -C doc clean
!       rm -fr autom4te.cache
        rm -f *~ DEADJOE
  
  distclean:
!       $(MAKE) -C src distclean
!       $(MAKE) -C doc distclean
!       rm -fr autom4te.cache
!       rm -f *~ DEADJOE
!       rm -f config.status config.log config.cache config.h Makefile 
configure.scan
  
  maintainer-clean:
!       $(MAKE) -C src maintainer-clean
!       $(MAKE) -C doc maintainer-clean
!       rm -fr autom4te.cache
!       rm -f *~ DEADJOE
!       rm -f config.status config.log config.cache config.h Makefile 
configure.scan
!       rm -f configure config.h.in
! 
--- 26,71 ----
  # where info files should be stored
  INFODIR=$(prefix)/info
  
! # directories to make
! DIRS=src doc @subdirs@
  
! # filenames to clean in distclean
! DISTCLEAN_NAMES=\*.a \*.o \*~ \*.so config.status config.log config.cache 
config.h Makefile configure.scan defaults.h
  
! # filenames to clean in maintainer-clean
! MAINTAINERCLEAN_NAMES=$(DISTCLEAN_NAMES) configure config.h.in
! 
! all:
!       $(MAKE) recursive TARGET=all
! 
! recursive:
!       @for current_dir in $(DIRS); do                                 \
!               (cd $$current_dir && $(MAKE) $(TARGET)) || exit 1;      \
!       done
  
  install:
!       $(MAKE) recursive TARGET=install
  
  clean:
!       $(MAKE) recursive TARGET=clean
        rm -f *~ DEADJOE
  
  distclean:
!       $(MAKE) recursive TARGET=distclean
!       @echo
!       @echo -n searching and removing files
!       @for file in $(DISTCLEAN_NAMES); do                             \
!               find -name "$$file" -print0 | xargs -0 rm -f;           \
!               echo -n .;                                              \
!       done
!       @echo done
  
  maintainer-clean:
!       $(MAKE) recursive TARGET=maintainer-clean
!       @echo
!       @echo -n searching and removing files
!       @for file in $(MAINTAINERCLEAN_NAMES); do                       \
!               find -name "$$file" -print0 | xargs -0 rm -f;           \
!               echo -n .;                                              \
!       done
!       @echo done




reply via email to

[Prev in Thread] Current Thread [Next in Thread]