summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@hadrons.org>2008-07-26 22:39:29 +0300
committerGuillem Jover <guillem@hadrons.org>2008-07-26 22:39:29 +0300
commitf2d93325e6d073681c55f6959bed3a172bc15989 (patch)
tree3aef3d52b0b870d2e52099785c68c42ba815da6e
parent5e1a78211983e2547838ce3fd2dd607e0a320393 (diff)
downloadlibbsd-f2d93325e6d073681c55f6959bed3a172bc15989.tar.gz
Install md5.3 as md5.3bsd
This man page is pretty common in other source projects, so we use a suffix to distinguish it.
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4759bcd..09a24d7 100644
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,7 @@ LIB_SRCS := \
LIB_SRCS := $(patsubst %,src/%,$(LIB_SRCS))
LIB_GEN_SRCS := \
- man/md5.3 \
+ man/md5.3bsd \
src/hash/md5hl.c
LIB_INCLUDES := \
@@ -61,7 +61,7 @@ LIB_MANS := \
fgetln.3 \
fmtcheck.3 \
setmode.3 \
- md5.3
+ md5.3bsd
LIB_MANS := $(patsubst %,man/%,$(LIB_MANS))
LIB_STATIC_OBJS := $(LIB_SRCS:%.c=%.o)
@@ -92,7 +92,7 @@ man: $(LIB_MANS)
%.o: %.c
$(CC) -o $@ $(MK_CFLAGS) $(CFLAGS) -c $<
-man/md5.3: man/mdX.3
+man/md5.3bsd: man/mdX.3
sed -e 's/mdX/md5/g' -e 's/mdY/md4/g' -e 's/MDX/MD5/g' $< > $@
src/hash/md5hl.c: src/hash/helper.c