Lines 1-50
Link Here
|
1 |
--- Makefile.orig Sat Jul 13 07:33:16 2002 |
|
|
2 |
+++ Makefile Tue Dec 14 23:47:23 2004 |
3 |
@@ -18,23 +18,23 @@ |
4 |
# |
5 |
|
6 |
# directory for TeX inputs (cwebmac.tex goes here) |
7 |
-MACROSDIR= /usr/local/texmf/tex/generic |
8 |
+MACROSDIR= ${PREFIX}/share/texmf/tex/generic/misc |
9 |
|
10 |
# directory for CWEB inputs in @i files |
11 |
-CWEBINPUTS= /usr/local/lib/cweb |
12 |
+CWEBINPUTS= ${PREFIX}/share/cweb |
13 |
|
14 |
# extension for manual pages ("l" distinguishes local from system stuff) |
15 |
-MANEXT= l |
16 |
-#MANEXT= 1 |
17 |
+#MANEXT= l |
18 |
+MANEXT= 1 |
19 |
|
20 |
# directory for manual pages (cweb.1 goes here) |
21 |
-MANDIR= /usr/man/man$(MANEXT) |
22 |
+MANDIR= ${PREFIX}/man/man$(MANEXT) |
23 |
|
24 |
# destination directory for executables; must end in / |
25 |
-DESTDIR= /usr/local/bin/ |
26 |
+DESTDIR= ${PREFIX}/bin/ |
27 |
|
28 |
# directory for GNU EMACS Lisp code (cweb.el goes here) |
29 |
-EMACSDIR= /usr/local/emacs/lisp |
30 |
+EMACSDIR= ${PREFIX}/share/emacs/site-lisp |
31 |
|
32 |
# Set DESTPREF to null if you want to call the executables "tangle" and "weave" |
33 |
# (probably NOT a good idea; we recommend leaving DESTPREF=c) |
34 |
@@ -50,13 +50,13 @@ |
35 |
WCHANGES= |
36 |
|
37 |
# We keep debugging info around, for fun, but most users don't need it |
38 |
-CFLAGS = -g |
39 |
+#CFLAGS = -g |
40 |
#CFLAGS = -O |
41 |
-LINKFLAGS = -g |
42 |
+#LINKFLAGS = -g |
43 |
#LINKFLAGS = -s # for smaller (stripped) executables on many UNIX systems |
44 |
|
45 |
# What C compiler are you using? |
46 |
-CC = cc |
47 |
+#CC = cc |
48 |
|
49 |
# RM and CP are used below in case rm and cp are aliased |
50 |
RM= /bin/rm |