aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 4607dd87fbf98b91c95e6c138c917c503ffa3d08 (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