summaryrefslogtreecommitdiff
path: root/Makefile
blob: d2a9e54be0809ce9f885f15ebde6aae125e540cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.POSIX:

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)