source: git/Makefile.in @ 6afd7c

spielwiese
Last change on this file since 6afd7c was 6afd7c, checked in by Olaf Bachmann <obachman@…>, 27 years ago
This commit was generated by cvs2svn to compensate for changes in r243, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@244 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 958 bytes
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
34Makefile : Makefile.in config.status
35        ./config.status
36
37config.status : configure
38        ./config.status --recheck
39
40configure: configure.in
41        autoconf
Note: See TracBrowser for help on using the repository browser.