summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-11-20 16:35:46 -0500
committerJakob Kaivo <jkk@ung.org>2019-11-20 16:35:46 -0500
commitbc4ca8f73ece3cb3d6d3538ea182b078142c65c9 (patch)
treece3de06069b5d21bf5c65a71c4f19efcf5492de0 /Makefile
parentf1cdf4f5ff99255c12347b214853bf68835b6a9c (diff)
add rough outlines of cpio and tar interfaces
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c6bbc04..d2a9e54 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,12 @@
CFLAGS=-Wall -Wextra -Wpedantic
+all: pax cpio tar
+
pax: pax.o tar.o cpio.o
+tar cpio: pax
+ ln -sf pax $@
+
clean:
rm -f $$(cat .gitignore)