aboutsummaryrefslogtreecommitdiffstats
path: root/file_cmds/gzip
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-10 09:13:28 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-10 09:13:28 -0400
commitad3d9102dbec58bdd72fffe933081e8d258e962d (patch)
tree32f91557fb89a7ca44116a828cf25b64e95925fd /file_cmds/gzip
parentf6684a2134ecc4959011955e89abb6103dd2eb2f (diff)
downloadapple_cmds-ad3d9102dbec58bdd72fffe933081e8d258e962d.tar.gz
apple_cmds-ad3d9102dbec58bdd72fffe933081e8d258e962d.tar.zst
apple_cmds-ad3d9102dbec58bdd72fffe933081e8d258e962d.zip
file_cmds: mtree probably won't work, but it does compile
Diffstat (limited to 'file_cmds/gzip')
-rw-r--r--file_cmds/gzip/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/file_cmds/gzip/Makefile b/file_cmds/gzip/Makefile
new file mode 100644
index 0000000..760cb20
--- /dev/null
+++ b/file_cmds/gzip/Makefile
@@ -0,0 +1,15 @@
+PROG= gzip
+SRCS= futimens.c \
+ gzip.c
+MAN= gzexe.1 gzip.1 zdiff.1 zforce.1 zmore.1 znew.1
+SCRIPTS= gzexe \
+ gzip \
+ zdiff \
+ zforce \
+ zmore \
+ znew
+
+CFLAGS+=-DGZIP_APPLE_VERSION=\"321.40.3\"
+LDADD=-llzma -lz -lbz2
+
+.include <bsd.prog.mk>