From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RuM1i-0002a7-6a for garchives@archives.gentoo.org; Mon, 06 Feb 2012 10:42:26 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF7B6E027D; Mon, 6 Feb 2012 10:42:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A28E2E027D for ; Mon, 6 Feb 2012 10:42:17 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B0F91B404D for ; Mon, 6 Feb 2012 10:42:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 5D77080043 for ; Mon, 6 Feb 2012 10:42:16 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: Subject: [gentoo-commits] proj/conf-update:master commit in: / X-VCS-Repository: proj/conf-update X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: f66bad59d20e6a10b8cb1d0808f6c6004b8628fa Date: Mon, 6 Feb 2012 10:42:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: e073bbf5-5a7d-4f79-b04b-c109edfe464d X-Archives-Hash: b56303a806598bb81bcd353066af813f commit: f66bad59d20e6a10b8cb1d0808f6c6004b8628fa Author: Jos=C3=A9 Mar=C3=ADa Alonso AuthorDate: Mon Feb 6 10:40:45 2012 +0000 Commit: Jos=C3=A9 Mar=C3=ADa Alonso gentoo org> CommitDate: Mon Feb 6 10:40:45 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/conf-update.g= it;a=3Dcommit;h=3Df66bad59 Added install phase --- Makefile | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 5ff7614..b8bbb7a 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,16 @@ conf-update.h: core.h helpers.h index.h modified.h con= fig.h conf-update: core.o helpers.o conf-update.o index.o modified.o config.o $(CC) $(LDFLAGS) -o conf-update config.o core.o helpers.o conf-update.o= index.o modified.o $$(pkg-config --libs glib-2.0) -lncurses -lmenu -lcry= pto =20 -.PHONY: clean +install: conf-update + @install -d $(DESTDIR)/usr/sbin/ + @install conf-update $(DESTDIR)/usr/sbin/ + @install -d $(DESTDIR)/etc + @install -m 644 conf-update.conf $(DESTDIR)/etc + @install -d $(DESTDIR)/usr/share/man/man1 + @install -m 644 conf-update.1 $(DESTDIR)/usr/share/man/man1 =20 clean: rm -f *.o rm -f conf-update=09 + +.PHONY: all clean