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 1Qv6PG-0007ZP-NB for garchives@archives.gentoo.org; Sun, 21 Aug 2011 11:41:41 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0D0C21C023; Sun, 21 Aug 2011 11:39:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3951D21C023 for ; Sun, 21 Aug 2011 11:39:47 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9B9341B4075 for ; Sun, 21 Aug 2011 11:39:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E832580040 for ; Sun, 21 Aug 2011 11:39:41 +0000 (UTC) From: "Александр Берсенев" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Александр Берсенев" Message-ID: <4161e981fd764f039fec2fff2afe3af380d33b83.bay@gentoo> Subject: [gentoo-commits] proj/autodep:master commit in: / X-VCS-Repository: proj/autodep X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: bay X-VCS-Committer-Name: Александр Берсенев X-VCS-Revision: 4161e981fd764f039fec2fff2afe3af380d33b83 Date: Sun, 21 Aug 2011 11:39:41 +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: X-Archives-Hash: 7e38bfece136d5f5cea0841430201a13 commit: 4161e981fd764f039fec2fff2afe3af380d33b83 Author: Alexander Bersenev hackerdom ru> AuthorDate: Sun Aug 21 17:38:24 2011 +0000 Commit: =D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80 =D0=91= =D0=B5=D1=80=D1=81=D0=B5=D0=BD=D0=B5=D0=B2 hackerdom ru> CommitDate: Sun Aug 21 17:38:24 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/autodep.git;a= =3Dcommit;h=3D4161e981 first version of toplevel makefile --- Makefile | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..96e3763 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +all: hookfs file_hook.so + +hookfs: src/hook_fusefs/hookfs.c + $(CC) -std=3Dc99 -Wall `pkg-config fuse --cflags --libs` -lulockmgr \ + $(CFLAGS) $(LDFLAGS) src/hook_fusefs/hookfs.c -o hookfs + +file_hook.so: file_hook.o + ld -shared -o file_hook.so -ldl -lc file_hook.o + +file_hook.o: src/hook_lib/file_hook.c + cc -Wall -fPIC -o file_hook.o -c src/hook_lib/file_hook.c + + +clean: + rm -f hookfs file_hook.o file_hook.so