aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
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