b8275b2a18
The goal of Aop (Ambassador Of Pain) is is to drive the hoovercraft (O) trough the level into the 'at' sign (@) and reach as much points as possible by reducing the number of moves and not losing any time. Lost lifes (0) can easily be picked up by simply drive over them. Packaged by Antoine Reilles.
19 lines
594 B
Text
19 lines
594 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2006/03/12 15:18:12 rillig Exp $
|
|
|
|
--- Makefile.orig 2005-04-25 23:27:12.000000000 +0200
|
|
+++ Makefile 2005-04-25 23:30:38.000000000 +0200
|
|
@@ -4,10 +4,10 @@
|
|
aop: aop.c
|
|
|
|
install: aop
|
|
- install -d /usr/local/bin
|
|
- install -d /usr/local/share/aop
|
|
- install -m 755 aop /usr/local/bin/aop
|
|
- install -m 644 aop-level-*.txt /usr/local/share/aop/
|
|
+ ${BSD_INSTALL_PROGRAM_DIR} ${PREFIX}/bin
|
|
+ ${BSD_INSTALL_DATA_DIR} ${PREFIX}/share/aop
|
|
+ ${BSD_INSTALL_PROGRAM} aop ${PREFIX}/bin/aop
|
|
+ ${BSD_INSTALL_DATA} aop-level-*.txt ${PREFIX}/share/aop/
|
|
|
|
clean:
|
|
rm -f aop core* *~
|