diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-11-20 16:35:46 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-11-20 16:35:46 -0500 |
commit | bc4ca8f73ece3cb3d6d3538ea182b078142c65c9 (patch) | |
tree | ce3de06069b5d21bf5c65a71c4f19efcf5492de0 /Makefile | |
parent | f1cdf4f5ff99255c12347b214853bf68835b6a9c (diff) |
add rough outlines of cpio and tar interfaces
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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) |