diff options
author | June McEnroe <june@causal.agency> | 2018-11-09 14:22:34 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-11-09 14:22:34 -0500 |
commit | 0928df40960f213ff327cb94fc552ccaf780d4f4 (patch) | |
tree | 4666980e40acc0149c3943c307d9c123e76151b1 | |
parent | Add deflate.3 (diff) | |
download | zlib-man-pages-0928df40960f213ff327cb94fc552ccaf780d4f4.tar.gz zlib-man-pages-0928df40960f213ff327cb94fc552ccaf780d4f4.zip |
Add FreeBSD Makefile
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..10d00b5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.gz diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..68863a8 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +MAN += adler32.3 +MAN += compress.3 +MAN += crc32.3 +MAN += deflate.3 +MAN += uncompress.3 +MAN += zlibCompileFlags.3 +MAN += zlibVersion.3 + +MLINKS += adler32.3 adler32_combine.3 +MLINKS += adler32.3 adler32_z.3 +MLINKS += compress.3 compress2.3 +MLINKS += compress.3 compressBound.3 +MLINKS += crc32.3 crc32_combine.3 +MLINKS += crc32.3 crc32_z.3 +MLINKS += deflate.3 deflateEnd.3 +MLINKS += deflate.3 deflateInit.3 +MLINKS += uncompress.3 uncompress2.3 + +.include <bsd.lib.mk> |