aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ec25bf49447b9d27508fe745a3ef6188271c4ced (plain)
1
2
3
4
5
6
7
8
9
10
11
install:
	mkdir -p $(DESTDIR)/usr/share/ponies
	cp -r ponies/*.pony $(DESTDIR)/usr/share/ponies/
	install -Dm755 ponysay $(DESTDIR)/usr/bin/ponysay
	ln -s ponysay $(DESTDIR)/usr/bin/ponythink**

uninstall:
	rm -fr $(DESTDIR)/usr/share/ponies
#	cp -r ponies/*.pony $(DESTDIR)/usr/share/ponies/
	rm -f $(DESTDIR)/usr/bin/ponysay
	unlink $(DESTDIR)/usr/bin/ponythink**