]>
Commit | Line | Data |
---|---|---|
bac41a7b A |
1 | # file: makehead.in |
2 | # (unless it is the file @configure_input@) | |
3 | # | |
4 | # INSERT_VDA_COMMENTS | |
5 | # | |
6 | # $Header: /cvs/Darwin/Security/SecuritySNACCRuntime/makehead.in,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $ | |
7 | # $Log: makehead.in,v $ | |
8 | # Revision 1.1.1.1 2001/05/18 23:14:04 mb | |
9 | # Move from private repository to open source repository | |
10 | # | |
11 | # Revision 1.1.1.1 1999/03/16 18:05:49 aram | |
12 | # Originals from SMIME Free Library. | |
13 | # | |
14 | # Revision 1.7 1997/02/16 16:44:50 rj | |
15 | # made return *this after calling abort()'' a compile time option. | |
16 | # | |
17 | # Revision 1.6 1995/09/07 18:38:39 rj | |
18 | # PSBOOK and PSNUP added. (they get used in .../doc/makefile) | |
19 | # | |
20 | # manext and mandir split into two pairs, for sections 1 and n. | |
21 | # | |
22 | # Revision 1.5 1995/07/24 14:59:35 rj | |
23 | # new macros added: | |
24 | # libexecdir for architecture-specific stuff | |
25 | # tcldir under libdir (architecture independent) | |
26 | # TCLSH | |
27 | # DEPENDENCIES for c*-lib's multiple dependencies via recursive make calls | |
28 | # TREELIBS for tree-3.6 widget libs | |
29 | # PATCH for c-lib to patch tbl.h | |
30 | # TCL-P utility prog that returns whether the tcl interface should be made as exit code | |
31 | # | |
32 | # Revision 1.4 1995/02/18 11:53:46 rj | |
33 | # added a small hack to find gcc's hidden include directory to pass it to makedepend. this shall enable X11's makedepend to find .h files a little more the way gcc does. | |
34 | # | |
35 | # Revision 1.3 1995/02/13 14:53:58 rj | |
36 | # CFLAGS, CXXFLAGS and LDFLAGS moved from the various makefiles to here. | |
37 | # | |
38 | # Revision 1.2 1994/10/08 04:30:32 rj | |
39 | # Tcl and X11 libs added | |
40 | # | |
41 | # Revision 1.1 1994/09/01 00:51:23 rj | |
42 | # first check-in (new file). | |
43 | # | |
44 | ||
45 | srcdir = @srcdir@ | |
46 | top_srcdir = @top_srcdir@ | |
47 | prefix = @prefix@ | |
48 | exec_prefix = @exec_prefix@ | |
49 | ||
50 | bindir = $(exec_prefix)/bin | |
51 | libexecdir = $(exec_prefix)/lib | |
52 | libdir = $(prefix)/lib | |
53 | incdir = $(prefix)/include | |
54 | tcldir = $(libdir)/snacc/tcl | |
55 | # beware setting both extensions to the same value, otherwise snacc.1 and snacc.n will collide! | |
56 | man1ext = 1 | |
57 | mannext = n | |
58 | man1dir = $(prefix)/man/man$(man1ext) | |
59 | manndir = $(prefix)/man/man$(mannext) | |
60 | ||
61 | SHELL = /bin/sh | |
62 | ECHO = echo | |
63 | @SET_MAKE@ | |
64 | ||
65 | TCLSH = @TCLSH@ | |
66 | SNACC_NOVOLAT = @SNACC_NOVOLAT@ | |
67 | ||
68 | MKDEP = @MKDEP@ | |
69 | MKDEP_CCINC = @MKDEP_CCINC@ | |
70 | ||
71 | DEPENDENCIES = dependencies | |
72 | ||
73 | LEX = @LEX@ | |
74 | LFLAGS = @LFLAGS@ | |
75 | LEXLIB = @LEXLIB@ | |
76 | YACC = @YACC@ | |
77 | ||
78 | CC = @CC@ | |
79 | CFLAGS = @CFLAGS@ -DVDADER_RULES | |
80 | CXX = @CXX@ | |
81 | CXXFLAGS = @CXXFLAGS@ -DVDADER_RULES | |
82 | ||
83 | LDFLAGS = @LDFLAGS@ | |
84 | LIBS = @LIBS@ | |
85 | CPPFLAGS.TCL = | |
86 | TCLLIBS = @TCLLIBS@ | |
87 | TREELIBS = @TREELIBS@ | |
88 | ||
89 | CPPFLAGS.X11 = @X_CFLAGS@ | |
90 | LDFLAGS.X11 = @X_LIBS@ | |
91 | LDLIBS.X11pre = @X_PRE_LIBS@ | |
92 | LDLIBS.X11extra = @X_EXTRA_LIBS@ | |
93 | ||
94 | PATCH = @PATCH@ | |
95 | AR = @AR@ | |
96 | RANLIB = @RANLIB@ | |
97 | ||
98 | INSTALL = @INSTALL@ | |
99 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
100 | INSTALL_DATA = @INSTALL_DATA@ | |
101 | ||
102 | LATEX = @LATEX@ | |
103 | BIBTEX = @BIBTEX@ | |
104 | DVIPS = @DVIPS@ | |
105 | DETEX = @DETEX@ | |
106 | PSPREVIEW = @PSPREVIEW@ | |
107 | PSBOOK = @PSBOOK@ | |
108 | PSNUP = @PSNUP@ | |
109 | SPELL = @SPELL@ | |
110 | ||
111 | TCL-P = $(TOP)/tcl-p | |
112 | ||
113 | REASON = @if [ -f $@ ]; then $(ECHO) "====== making $@ because of $? ======"; else $(ECHO) "====== making (creating) $@ ======"; fi |