diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-08-01 17:35:43 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-08-01 17:35:43 +0000 |
commit | 36c3056b46649d0f28dd3b49f61ad08e8049548a (patch) | |
tree | 5d5a8e8b6880e3acdbf7349ccf62c4860fc6332c /grpmi/Makefile | |
parent | 814cacf5edc5ad3642157a23d6d8cff249644d3a (diff) | |
download | rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.tar rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.tar.gz rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.tar.bz2 rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.tar.xz rpmdrake-36c3056b46649d0f28dd3b49f61ad08e8049548a.zip |
Initial revisionV2_0topic/RPMDRAKE
Diffstat (limited to 'grpmi/Makefile')
-rw-r--r-- | grpmi/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/grpmi/Makefile b/grpmi/Makefile new file mode 100644 index 00000000..eb16a1f7 --- /dev/null +++ b/grpmi/Makefile @@ -0,0 +1,42 @@ + #****************************************************************************** + # + # Guillaume Cottenceau (gc@mandrakesoft.com) + # + # Copyright 2002 MandrakeSoft + # + # This software may be freely redistributed under the terms of the GNU + # public license. + # + # You should have received a copy of the GNU General Public License + # along with this program; if not, write to the Free Software + # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + # + #***************************************************************************** + +DIRS = curl_download rpm po + +PREFIX = /usr/local +DATADIR = $(PREFIX)/share +BINDIR = $(PREFIX)/bin + +all: dirs + +dirs: + @for n in . $(DIRS); do \ + [ "$$n" = "." ] || make -C $$n || exit 1 ;\ + done + +install: $(ALL) + @for n in $(DIRS); do \ + (cd $$n; $(MAKE) install) \ + done + install -d $(BINDIR) + install grpmi.pl $(BINDIR)/grpmi + perl -pi -e 's|use strict.*||' $(BINDIR)/grpmi + perl -pi -e 's|use vars.*||' $(BINDIR)/grpmi + perl -pi -e 's|use diagnostics.*||' $(BINDIR)/grpmi + +clean: + @for n in $(DIRS); do \ + (cd $$n; make clean) \ + done |