diff --git a/Makefile b/Makefile index 0345ea1..6a6e8dc 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,11 @@ install: + gcc -o ponysaytruncater ponysaytruncater.c mkdir -p $(DESTDIR)/usr/share/ponies + mkdir -p $(DESTDIR)/usr/share/ttyponies cp -r ponies/*.pony $(DESTDIR)/usr/share/ponies/ cp -r ttyponies/*.pony $(DESTDIR)/usr/share/ttyponies/ install -Dm755 ponysay $(DESTDIR)/usr/bin/ponysay + install -Dm755 ponysaytruncater $(DESTDIR)/usr/bin/ponysaytruncater ln -sf ponysay $(DESTDIR)/usr/bin/ponythink uninstall: @@ -11,4 +14,5 @@ uninstall: rm -fr $(DESTDIR)/usr/share/ttyponies # cp -r ttyponies/*.pony $(DESTDIR)/usr/share/ttyponies/ rm -f $(DESTDIR)/usr/bin/ponysay + rm -f $(DESTDIR)/usr/bin/ponysaytruncater unlink $(DESTDIR)/usr/bin/ponythink