blob: 515861a64d7f8ead4a15b5de6f7d662a30cda134 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
diff -Nur figlet22/Makefile figlet22-new/Makefile
--- figlet22/Makefile Tue Feb 18 16:02:28 1997
+++ figlet22-new/Makefile Thu Apr 26 22:27:46 2001
@@ -13,22 +13,29 @@
CFLAGS = -g
# Where the executables should be put
-DESTDIR = /usr/games
+ifndef DESTDIR
+ DESTDIR = /usr/bin/
+endif
# Where the man page should be put
-MANDIR = /usr/man/man6
+ifndef MANDIR
+ MANDIR = /usr/share/man/man6
+endif
# Where figlet will search first for fonts (the ".flf" files).
-DEFAULTFONTDIR = $(DESTDIR)/lib/figlet.dir
+ifndef DEFAULTFONTDIR
+ DEFAULTFONTDIR = /usr/share/figlet
+endif
# Use this definition if you can't put things in /usr/games
-DEFAULTFONTDIR = fonts
+#DEFAULTFONTDIR = fonts
# The filename of the font to be used if no other is specified
# (standard.flf is recommended, but any other can be used).
# This font file should reside in the directory specified by
# DEFAULTFONTDIR.
-DEFAULTFONTFILE = standard.flf
-
+ifndef DEFAULTFONTFILE
+ DEFAULTFONTFILE = standard.flf
+endif
##
## END OF CONFIGURATION SECTION
##
Binary files figlet22/figlet and figlet22-new/figlet differ
|