diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-05-08 04:14:20 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-05-08 04:14:20 +0000 |
commit | 7626d42b8d9ae4ea90f731e79ce8a9acce1ca8c2 (patch) | |
tree | 4ec4716b97d4ceb07a0e0e035a1d3e4193643b8f /Makefile | |
parent | 0373bb10920a5ea0f5b9f7a33033398132d2bd85 (diff) | |
download | pam-7626d42b8d9ae4ea90f731e79ce8a9acce1ca8c2.tar.gz pam-7626d42b8d9ae4ea90f731e79ce8a9acce1ca8c2.tar.bz2 pam-7626d42b8d9ae4ea90f731e79ce8a9acce1ca8c2.zip |
Relevant BUGIDs: 422144
Purpose of commit: cleanup
Commit summary:
---------------
Replace 'make' with $(MAKE). This helps on systems that have gmake
and need to use it to build the distribution.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -58,20 +58,20 @@ $(THINGSTOMAKE): _pam_aconf.h prep install: _pam_aconf.h prep $(MKDIR) $(FAKEROOT)$(INCLUDED) $(INSTALL) -m 444 security/_pam_aconf.h $(FAKEROOT)$(INCLUDED) - for x in $(THINGSTOMAKE) ; do make -C $$x install ; done + for x in $(THINGSTOMAKE) ; do $(MAKE) -C $$x install ; done remove: rm -f $(FAKEROOT)$(INCLUDED)/_pam_aconf.h - for x in $(THINGSTOMAKE) ; do make -C $$x remove ; done + for x in $(THINGSTOMAKE) ; do $(MAKE) -C $$x remove ; done release: - @if [ ! -f Make.Rules ]; then echo make Make.Rules first ; exit 1; fi + @if [ ! -f Make.Rules ]; then echo $(MAKE) Make.Rules first ;exit 1 ;fi @if [ ! -L ../$(DISTNAME)-$(MAJOR_REL).$(MINOR_REL) ]; then \ echo generating ../$(DISTNAME)-$(MAJOR_REL).$(MINOR_REL) link ; \ ln -sf $(DISTNAME) ../$(DISTNAME)-$(MAJOR_REL).$(MINOR_REL) ; \ echo to ../$(DISTNAME) . ; fi @diff ../$(DISTNAME)-$(MAJOR_REL).$(MINOR_REL)/Make.Rules Make.Rules - make distclean + $(MAKE) distclean cd .. ; tar zvfc $(DISTNAME)-$(MAJOR_REL).$(MINOR_REL).tar.gz \ --exclude CVS --exclude .cvsignore --exclude '.#*' \ $(DISTNAME)-$(MAJOR_REL).$(MINOR_REL)/* |