]> git.ipfire.org Git - thirdparty/libbsd.git/commitdiff
Move man pages to man/
authorGuillem Jover <guillem@hadrons.org>
Sat, 31 Dec 2011 05:50:40 +0000 (06:50 +0100)
committerGuillem Jover <guillem@hadrons.org>
Tue, 3 Jan 2012 06:02:34 +0000 (07:02 +0100)
30 files changed:
Makefile
man/.gitignore [moved from src/.gitignore with 100% similarity]
man/arc4random.3 [moved from src/arc4random.3 with 100% similarity]
man/arc4random_addrandom.3 [moved from src/arc4random_addrandom.3 with 100% similarity]
man/arc4random_buf.3 [moved from src/arc4random_buf.3 with 100% similarity]
man/arc4random_stir.3 [moved from src/arc4random_stir.3 with 100% similarity]
man/arc4random_uniform.3 [moved from src/arc4random_uniform.3 with 100% similarity]
man/dehumanize_number.3 [moved from src/dehumanize_number.3 with 100% similarity]
man/fgetln.3 [moved from src/fgetln.3 with 100% similarity]
man/flopen.3 [moved from src/flopen.3 with 100% similarity]
man/fmtcheck.3 [moved from src/fmtcheck.3 with 100% similarity]
man/getmode.3 [moved from src/getmode.3 with 100% similarity]
man/getpeereid.3 [moved from src/getpeereid.3 with 100% similarity]
man/heapsort.3 [moved from src/heapsort.3 with 100% similarity]
man/humanize_number.3 [moved from src/humanize_number.3 with 100% similarity]
man/mdX.3 [moved from src/mdX.3 with 100% similarity]
man/mergesort.3 [moved from src/mergesort.3 with 100% similarity]
man/nlist.3 [moved from src/nlist.3 with 100% similarity]
man/pidfile.3 [moved from src/pidfile.3 with 100% similarity]
man/radixsort.3 [moved from src/radixsort.3 with 100% similarity]
man/readpassphrase.3 [moved from src/readpassphrase.3 with 100% similarity]
man/reallocf.3 [moved from src/reallocf.3 with 100% similarity]
man/setmode.3 [moved from src/setmode.3 with 100% similarity]
man/sradixsort.3 [moved from src/sradixsort.3 with 100% similarity]
man/strlcat.3 [moved from src/strlcat.3 with 100% similarity]
man/strlcpy.3 [moved from src/strlcpy.3 with 100% similarity]
man/strmode.3 [moved from src/strmode.3 with 100% similarity]
man/strtonum.3 [moved from src/strtonum.3 with 100% similarity]
man/unvis.3 [moved from src/unvis.3 with 100% similarity]
man/vis.3 [moved from src/vis.3 with 100% similarity]

index 42b1bb0e5d11c63cbb5dbb9a46843fc8003d72df..c359acbebc33023981b7ba641d79ee0a4cc2e86c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -112,8 +112,8 @@ LIB_MANS := \
        unvis.3 \
        vis.3 \
        $(LIB_MANS_GEN)
-LIB_MANS_GEN := $(patsubst %,src/%,$(LIB_MANS_GEN))
-LIB_MANS := $(patsubst %,src/%,$(LIB_MANS))
+LIB_MANS_GEN := $(patsubst %,man/%,$(LIB_MANS_GEN))
+LIB_MANS := $(patsubst %,man/%,$(LIB_MANS))
 
 LIB_STATIC_OBJS := $(LIB_SRCS:%.c=%.o)
 LIB_SHARED_OBJS := $(LIB_SRCS:%.c=%.lo)
@@ -157,7 +157,7 @@ man: $(LIB_MANS)
 %.o: %.c
        $(COMPILE) -o $@ -c $<
 
-src/md5.3bsd:  src/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
similarity index 100%
rename from src/.gitignore
rename to man/.gitignore
similarity index 100%
rename from src/arc4random.3
rename to man/arc4random.3
similarity index 100%
rename from src/arc4random_buf.3
rename to man/arc4random_buf.3
similarity index 100%
rename from src/arc4random_stir.3
rename to man/arc4random_stir.3
similarity index 100%
rename from src/fgetln.3
rename to man/fgetln.3
similarity index 100%
rename from src/flopen.3
rename to man/flopen.3
similarity index 100%
rename from src/fmtcheck.3
rename to man/fmtcheck.3
similarity index 100%
rename from src/getmode.3
rename to man/getmode.3
similarity index 100%
rename from src/getpeereid.3
rename to man/getpeereid.3
similarity index 100%
rename from src/heapsort.3
rename to man/heapsort.3
similarity index 100%
rename from src/humanize_number.3
rename to man/humanize_number.3
similarity index 100%
rename from src/mdX.3
rename to man/mdX.3
similarity index 100%
rename from src/mergesort.3
rename to man/mergesort.3
similarity index 100%
rename from src/nlist.3
rename to man/nlist.3
similarity index 100%
rename from src/pidfile.3
rename to man/pidfile.3
similarity index 100%
rename from src/radixsort.3
rename to man/radixsort.3
similarity index 100%
rename from src/readpassphrase.3
rename to man/readpassphrase.3
similarity index 100%
rename from src/reallocf.3
rename to man/reallocf.3
similarity index 100%
rename from src/setmode.3
rename to man/setmode.3
similarity index 100%
rename from src/sradixsort.3
rename to man/sradixsort.3
similarity index 100%
rename from src/strlcat.3
rename to man/strlcat.3
similarity index 100%
rename from src/strlcpy.3
rename to man/strlcpy.3
similarity index 100%
rename from src/strmode.3
rename to man/strmode.3
similarity index 100%
rename from src/strtonum.3
rename to man/strtonum.3
similarity index 100%
rename from src/unvis.3
rename to man/unvis.3
similarity index 100%
rename from src/vis.3
rename to man/vis.3