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

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