source: git/Makefile.in @ 262d47

spielwiese
Last change on this file since 262d47 was 262d47, checked in by Olaf Bachmann <obachman@…>, 27 years ago
* fine tuning git-svn-id: file:///usr/local/Singular/svn/trunk@266 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.0 KB
Line 
1SHELL           = /bin/sh
2@SET_MAKE@
3
4BUILD_SUBDIRS   = @CONFIG_SUBDIRS@
5SUBDIRS         = @SUBDIRS@
6
7all install uninstall info dvi : Makefile
8        for SUBDIR in ${BUILD_SUBDIRS}; \
9        do \
10                echo ${MAKE} $@ in $${SUBDIR}; \
11                cd $${SUBDIR}; \
12                ${MAKE} $@; \
13                cd .. ;\
14        done
15
16clean distclean mostlyclean maintainer-clean:
17        for SUBDIR in ${SUBDIRS}; \
18        do \
19                echo ${MAKE} $@ in $${SUBDIR}; \
20                cd $${SUBDIR}; \
21                ${MAKE} $@; \
22                cd .. ;\
23        done
24        rm -rf *~ a.out core *.o .log lib bin share include
25        if test "$@" = distclean || test "$@" = maintainer-clean; then \
26          rm -f config.cache config.log config.status TAGS* *.gz *.tar; \
27        fi; \
28        if test "$@" = maintainer-clean; then \
29          echo "This command is inteneded for maintainer use, only" ; \
30          echo "Rebuilding the deleteed file(s) requires at least autoconf"; \
31          rm -f configure ;\
32        fi
33
34dist:
35       
36Makefile : Makefile.in config.status
37        ./config.status
38
39config.status : configure
40        ./config.status --recheck
41
42configure: configure.in
43        echo "You need to rerun autoconf. I am proceeding, for now."
44        touch configure
45#       autoconf
46#
Note: See TracBrowser for help on using the repository browser.