[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/5] Updated the Makefile (unionfs -> unionmount)
From: |
Sergiu Ivanov |
Subject: |
Re: [PATCH 2/5] Updated the Makefile (unionfs -> unionmount) |
Date: |
Fri, 29 May 2009 00:02:13 +0300 |
>From 021667aed570dfb58fe6457685ac8da38e7077a0 Mon Sep 17 00:00:00 2001
From: Sergiu Ivanov <unlimitedscolobb@gmail.com>
Date: Thu, 28 May 2009 19:27:59 +0300
Subject: [PATCH] Tailor Makefile to produce unionmount executable.
* Makefile: Changed unionfs in target names to unionmount.
Updated the comments.
---
Makefile | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile
index 6a40005..a521ea0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,10 @@
-# Hurd unionfs
+# Hurd unionmount
# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation,
# Inc.
#
# Written by Jeroen Dekkers <jeroen@dekkers.cx>.
+#
+# Extended by Sergiu Ivanov <unlimitedscolobb@gmail.com>.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -69,12 +71,12 @@ vpath %.defs $(prefix)/include/hurd
-all: unionfs
+all: unionmount
-unionfs: $(OBJS) fs_notifyServer.o
+unionmount: $(OBJS) fs_notifyServer.o
$(CC) -o $@ $(OBJS) fs_notifyServer.o $(LDFLAGS)
-unionfs.static: $(OBJS) fs_notifyServer.o
+unionmount.static: $(OBJS) fs_notifyServer.o
$(CC) -static -o $@ $(OBJS) fs_notifyServer.o $(LDFLAGS)
fs_notifyServer.o: fs_notifyServer.c
@@ -82,4 +84,4 @@ fs_notifyServer.o: fs_notifyServer.c
.PHONY: clean
clean:
- rm -rf *.o fs_notifyServer.c fs_notify_S.h unionfs
+ rm -rf *.o fs_notifyServer.c fs_notify_S.h unionmount
--
1.5.2.4