]> git.saurik.com Git - apple/security.git/blame - SecuritySNACCRuntime/makehead.in
Security-28.tar.gz
[apple/security.git] / SecuritySNACCRuntime / makehead.in
CommitLineData
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
45srcdir = @srcdir@
46top_srcdir = @top_srcdir@
47prefix = @prefix@
48exec_prefix = @exec_prefix@
49
50bindir = $(exec_prefix)/bin
51libexecdir = $(exec_prefix)/lib
52libdir = $(prefix)/lib
53incdir = $(prefix)/include
54tcldir = $(libdir)/snacc/tcl
55# beware setting both extensions to the same value, otherwise snacc.1 and snacc.n will collide!
56man1ext = 1
57mannext = n
58man1dir = $(prefix)/man/man$(man1ext)
59manndir = $(prefix)/man/man$(mannext)
60
61SHELL = /bin/sh
62ECHO = echo
63@SET_MAKE@
64
65TCLSH = @TCLSH@
66SNACC_NOVOLAT = @SNACC_NOVOLAT@
67
68MKDEP = @MKDEP@
69MKDEP_CCINC = @MKDEP_CCINC@
70
71DEPENDENCIES = dependencies
72
73LEX = @LEX@
74LFLAGS = @LFLAGS@
75LEXLIB = @LEXLIB@
76YACC = @YACC@
77
78CC = @CC@
79CFLAGS = @CFLAGS@ -DVDADER_RULES
80CXX = @CXX@
81CXXFLAGS = @CXXFLAGS@ -DVDADER_RULES
82
83LDFLAGS = @LDFLAGS@
84LIBS = @LIBS@
85CPPFLAGS.TCL =
86TCLLIBS = @TCLLIBS@
87TREELIBS = @TREELIBS@
88
89CPPFLAGS.X11 = @X_CFLAGS@
90LDFLAGS.X11 = @X_LIBS@
91LDLIBS.X11pre = @X_PRE_LIBS@
92LDLIBS.X11extra = @X_EXTRA_LIBS@
93
94PATCH = @PATCH@
95AR = @AR@
96RANLIB = @RANLIB@
97
98INSTALL = @INSTALL@
99INSTALL_PROGRAM = @INSTALL_PROGRAM@
100INSTALL_DATA = @INSTALL_DATA@
101
102LATEX = @LATEX@
103BIBTEX = @BIBTEX@
104DVIPS = @DVIPS@
105DETEX = @DETEX@
106PSPREVIEW = @PSPREVIEW@
107PSBOOK = @PSBOOK@
108PSNUP = @PSNUP@
109SPELL = @SPELL@
110
111TCL-P = $(TOP)/tcl-p
112
113REASON = @if [ -f $@ ]; then $(ECHO) "====== making $@ because of $? ======"; else $(ECHO) "====== making (creating) $@ ======"; fi