]> git.saurik.com Git - apple/security.git/blob - SecuritySNACCRuntime/makehead.static
Security-29.tar.gz
[apple/security.git] / SecuritySNACCRuntime / makehead.static
1 #
2 # Hack to work around (apparently) broken autoconf - it always generates this error
3 # when tying to create makehead
4 #
5 # ...snip...
6 # creating makehead
7 # sed: 28: conftest.s1: unescaped newline inside substitute pattern
8 # creating config.h
9 #...snip...
10 #
11 # So, this is a copy of a previously known good makehead, and all the makefiles
12 # which need it include this one.
13 #
14 #
15 #
16 # file: makehead.in
17 # (unless it is the file Generated automatically from makehead.in by configure.)
18 #
19 # INSERT_VDA_COMMENTS
20 #
21 # $Header: /cvs/Darwin/Security/SecuritySNACCRuntime/makehead.static,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
22 # $Log: makehead.static,v $
23 # Revision 1.1.1.1 2001/05/18 23:14:04 mb
24 # Move from private repository to open source repository
25 #
26 # Revision 1.1 2000/12/22 00:01:14 dmitch
27 # New file, included by most makefiles here and below, due to apparently broken autoconf, which now generates empty makehead file. This one is a copy of the last makehead which worked.
28 #
29 # Revision 1.4 2000/06/15 18:50:16 dmitch
30 # Doc change only.
31 #
32 # Revision 1.1.1.1 1999/03/16 18:05:49 aram
33 # Originals from SMIME Free Library.
34 #
35 # Revision 1.7 1997/02/16 16:44:50 rj
36 # made return *this after calling abort()'' a compile time option.
37 #
38 # Revision 1.6 1995/09/07 18:38:39 rj
39 # PSBOOK and PSNUP added. (they get used in .../doc/makefile)
40 #
41 # manext and mandir split into two pairs, for sections 1 and n.
42 #
43 # Revision 1.5 1995/07/24 14:59:35 rj
44 # new macros added:
45 # libexecdir for architecture-specific stuff
46 # tcldir under libdir (architecture independent)
47 # TCLSH
48 # DEPENDENCIES for c*-lib's multiple dependencies via recursive make calls
49 # TREELIBS for tree-3.6 widget libs
50 # PATCH for c-lib to patch tbl.h
51 # TCL-P utility prog that returns whether the tcl interface should be made as exit code
52 #
53 # Revision 1.4 1995/02/18 11:53:46 rj
54 # 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.
55 #
56 # Revision 1.3 1995/02/13 14:53:58 rj
57 # CFLAGS, CXXFLAGS and LDFLAGS moved from the various makefiles to here.
58 #
59 # Revision 1.2 1994/10/08 04:30:32 rj
60 # Tcl and X11 libs added
61 #
62 # Revision 1.1 1994/09/01 00:51:23 rj
63 # first check-in (new file).
64 #
65
66 srcdir = .
67 top_srcdir = .
68 prefix = /usr/local
69 exec_prefix = ${prefix}
70
71 bindir = $(exec_prefix)/bin
72 libexecdir = $(exec_prefix)/lib
73 libdir = $(prefix)/lib
74 incdir = $(prefix)/include
75 tcldir = $(libdir)/snacc/tcl
76 # beware setting both extensions to the same value, otherwise snacc.1 and snacc.n will collide!
77 man1ext = 1
78 mannext = n
79 man1dir = $(prefix)/man/man$(man1ext)
80 manndir = $(prefix)/man/man$(mannext)
81
82 SHELL = /bin/sh
83 ECHO = echo
84
85
86 TCLSH = false
87 SNACC_NOVOLAT =
88
89 MKDEP = mkdep
90 MKDEP_CCINC = -I/usr/local/include -I/usr/libexec/ppc/2.95.2/include -F/System/Library/PrivateFrameworks
91
92 DEPENDENCIES = dependencies
93
94 LEX = flex
95 LFLAGS =
96 LEXLIB = -ll
97 YACC = bison -y
98
99 CC = cc
100 CFLAGS = -DMACOS -DYYTEXT_POINTER -DFLEX_IN_USE -DVDADER_RULES
101 CXX = c++
102 CXXFLAGS = -g -O2 -DVDADER_RULES
103
104 LDFLAGS =
105 LIBS =
106 CPPFLAGS.TCL =
107 TCLLIBS =
108 TREELIBS =
109
110 CPPFLAGS.X11 =
111 LDFLAGS.X11 =
112 LDLIBS.X11pre =
113 LDLIBS.X11extra =
114
115 PATCH = patch
116 AR = ar
117 RANLIB = ranlib
118
119 INSTALL = /usr/bin/install -c
120 INSTALL_PROGRAM = ${INSTALL}
121 INSTALL_DATA = ${INSTALL} -m 644
122
123 LATEX = false
124 BIBTEX = false
125 DVIPS = false
126 DETEX = false
127 PSPREVIEW = true
128 PSBOOK = false
129 PSNUP = false
130 SPELL = spell
131
132 TCL-P = $(TOP)/tcl-p
133
134 REASON = @if [ -f $@ ]; then $(ECHO) "====== making $@ because of $? ======"; else $(ECHO) "====== making (creating) $@ ======"; fi