about summary refs log tree commit homepage
path: root/Makefile
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-01-26 13:20:10 -0800
committerEric Wong <normalperson@yhbt.net>2010-01-26 13:27:33 -0800
commited96fd8ecc9af2b36f527f017473669d47511e47 (patch)
tree20200f27c8aea7ef6d206c94b98f178b9dbe95cc /Makefile
parentd4581cb9a1d178cb31416eb30d501a0e46878e45 (diff)
downloadpcu-ed96fd8ecc9af2b36f527f017473669d47511e47.tar.gz
rename pcu-sync -> pcu-fsync
Avoid confusing people with a 'sync' command since this is about
fsync-ing individual files.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5d8a09e..0027fdd 100644
--- a/Makefile
+++ b/Makefile
@@ -22,9 +22,9 @@ LDFLAGS = -Wl,-O1
 
 pcu-mincore: mincore.c compat-util.h
 pcu-fadvise: fadvise.c compat-util.h
-pcu-sync: sync.c compat-util.h
+pcu-fsync: fsync.c compat-util.h
 
-PCU_BIN := pcu-fadvise pcu-mincore pcu-sync
+PCU_BIN := pcu-fadvise pcu-mincore pcu-fsync
 
 $(PCU_BIN):
         $(CC) $(CFLAGS) $(LDFLAGS) -o $@+ $<