-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.make.in
40 lines (31 loc) · 858 Bytes
/
config.make.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
# -*- makefile-gmake -*-
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
mandir = @mandir@
docdir = @docdir@
datarootdir = @datarootdir@
sysconfdir = @sysconfdir@
CC = @CC@
CFLAGS = @CFLAGS@ @COVERAGE_CFLAGS@
# CURSES_CFLAGS contain `-I..` flags so add to preprocessor flags.
CPPFLAGS = @CPPFLAGS@ @CURSES_CFLAGS@ -DHAVE_CONFIG_H
LDFLAGS = @LDFLAGS@
LDLIBS = @LIBS@ @CURSES_LIBS@
ASCIIDOC = @ASCIIDOC@
XMLTO = @XMLTO@
DOCBOOK2PDF = @DOCBOOK2PDF@
LCOV = @LCOV@
GENHTML = @GENHTML@
# Special compatibility features
@NO_MKSTEMPS@ NO_MKSTEMPS = y
@NO_SETENV@ NO_SETENV = y
@NO_STRNDUP@ NO_STRNDUP = y
@NO_WORDEXP@ NO_WORDEXP = y
# Add config.h as a dependency for all object files
CONFIG_H = config.h
config.status: configure
./config.status --recheck
config.h config.make: config.status
./config.status $@
config.make: config.make.in