2012-02-26 18:28:17 +01:00
|
|
|
install:
|
2012-05-07 20:44:12 +02:00
|
|
|
gcc -o ponysaytruncater ponysaytruncater.c
|
2012-02-26 18:28:17 +01:00
|
|
|
mkdir -p $(DESTDIR)/usr/share/ponies
|
2012-05-07 20:44:12 +02:00
|
|
|
mkdir -p $(DESTDIR)/usr/share/ttyponies
|
2012-02-26 19:57:59 +01:00
|
|
|
cp -r ponies/*.pony $(DESTDIR)/usr/share/ponies/
|
2012-05-07 17:06:42 +02:00
|
|
|
cp -r ttyponies/*.pony $(DESTDIR)/usr/share/ttyponies/
|
2012-02-26 18:28:17 +01:00
|
|
|
install -Dm755 ponysay $(DESTDIR)/usr/bin/ponysay
|
2012-05-07 20:44:12 +02:00
|
|
|
install -Dm755 ponysaytruncater $(DESTDIR)/usr/bin/ponysaytruncater
|
2012-04-16 03:05:43 +02:00
|
|
|
ln -sf ponysay $(DESTDIR)/usr/bin/ponythink
|
2012-04-04 09:45:03 +02:00
|
|
|
|
|
|
|
uninstall:
|
|
|
|
rm -fr $(DESTDIR)/usr/share/ponies
|
|
|
|
# cp -r ponies/*.pony $(DESTDIR)/usr/share/ponies/
|
2012-05-07 17:06:42 +02:00
|
|
|
rm -fr $(DESTDIR)/usr/share/ttyponies
|
|
|
|
# cp -r ttyponies/*.pony $(DESTDIR)/usr/share/ttyponies/
|
2012-04-04 09:45:03 +02:00
|
|
|
rm -f $(DESTDIR)/usr/bin/ponysay
|
2012-05-07 20:44:12 +02:00
|
|
|
rm -f $(DESTDIR)/usr/bin/ponysaytruncater
|
2012-04-11 23:18:01 +02:00
|
|
|
unlink $(DESTDIR)/usr/bin/ponythink
|