-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.mk.in
49 lines (43 loc) · 1.2 KB
/
config.mk.in
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
41
42
43
44
45
46
47
48
49
#
# config.mk.in -- autoconf template for Vim on Unix vim:ts=8:sw=8:
#
# DO NOT EDIT config.mk!! Do not edit config.mk.in!! Edit Makefile and run
# configure again. config.mk will be overwritten by configure.
#
# Configure does not edit the makefile directly. This method is not the
# standard use of GNU autoconf, but it has two advantages:
# a) The user can override every choice made by configure.
# b) Modifications to the makefile are not lost when configure is run.
#
# I hope this is worth being nonstandard. jw.
@SET_MAKE@
CC = @CC@
DEFS = @DEFS@
CFLAGS = @CFLAGS@
srcdir = @srcdir@
VPATH = @srcdir@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
CTAGS = @CTAGS@
CPP = @CPP@
CPP_MM = @CPP_MM@
X_CFLAGS = @X_CFLAGS@
X_LIBS_DIR = @X_LIBS@
X_PRE_LIBS = @X_PRE_LIBS@
X_EXTRA_LIBS = @X_EXTRA_LIBS@
X_LIBS = @X_LIB@
### Prefix for location of files
PREFIX = @prefix@
# to fix a bug in autoconf, also do this:
prefix = @prefix@
### Location of binary
EXEC_PREFIX = @exec_prefix@
### Location for help files
HELPDIR = @HELPDIR@
### Do we have a GUI
GUI_INC_LOC = @GUI_INC_LOC@
GUI_LIB_LOC = @GUI_LIB_LOC@
MOTIF_COMMENT = @MOTIF_COMMENT@
ATHENA_COMMENT = @ATHENA_COMMENT@
NARROW_PROTO = @NARROW_PROTO@
GUI_X_LIBS = @GUI_X_LIBS@