summaryrefslogtreecommitdiff
path: root/Makefile
blob: c018ad158ab6d43112d4259788ff3070f4bcaf90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: pkg

pkg:
	cc -o pkg pkg.c actions.c utils.c

clean:
	rm -rf pkg

install: all
	mkdir -p /usr/local/bin
	cp -f pkg /usr/local/bin
	chmod 755 /usr/local/bin
	mkdir -p /usr/local/share/man/man1
	cp -f pkg.1 /usr/local/share/man/man1
	chmod 644 /usr/local/share/man/man1/pkg.1

uninstall:
	rm -rf /usr/local/bin/pkg
	rm -f /usr/local/share/man/man1/pkg.1