-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Makedefs.in
91 lines (79 loc) · 1.72 KB
/
Makedefs.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#
# Makefile definitions for HTMLDOC, an HTML document processing program.
#
# Copyright © 2011-2023 by Michael R Sweet.
# Copyright © 1997-2010 by Easy Software Products.
#
# This program is free software. Distribution and use rights are outlined in
# the file "COPYING".
#
#
# Programs...
#
AR = @AR@
AWK = @AWK@
CC = @CC@
CXX = @CXX@
CHMOD = @CHMOD@
CP = @CP@
INSTALL = @INSTALL@
LN = /bin/ln -sf
MKDIR = @MKDIR@ -p
POST = @POST@
RANLIB = @RANLIB@
RM = @RM@ -f
SHELL = /bin/sh
# The extension to use for executables...
EXEEXT = @EXEEXT@
#
# Installation programs...
#
INSTALL_BIN = $(INSTALL) -c -m 555 @INSTALL_STRIP@
INSTALL_DATA = $(INSTALL) -c -m 444
INSTALL_DIR = $(INSTALL) -d
INSTALL_MAN = $(INSTALL) -c -m 444
#
# Directories...
#
BUILDROOT = $(DSTROOT)$(RPM_BUILD_ROOT)$(DESTDIR)
bindir = @bindir@
datadir = @datadir@
datarootdir = @datarootdir@
exec_prefix = @exec_prefix@
includedir = @includedir@
infodir = @infodir@
libdir = @libdir@
libexecdir = @libexecdir@
localstatedir = @localstatedir@
mandir = @mandir@
oldincludedir = @oldincludedir@
prefix = @prefix@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
top_srcdir = @top_srcdir@
#
# Program options...
#
# OPTIM defines the common compiler optimization/debugging options.
#
ARFLAGS = @ARFLAGS@
CFLAGS = -I.. @CFLAGS@ @LARGEFILE@ $(OPTIM) $(WARNINGS)
CPPFLAGS = @CPPFLAGS@
CXXFLAGS = -I.. @CXXFLAGS@ @LARGEFILE@ $(OPTIM) $(WARNINGS)
LDFLAGS = @LDFLAGS@ $(OPTIM)
LIBS = @LIBS@
OPTIM = @OPTIM@
WARNINGS = @WARNINGS@
#
# Rules...
#
.SILENT:
.SUFFIXES: .a .c .cxx .h .o
.c.o:
echo Compiling $<...
$(CC) $(CPPFLAGS) $(CFLAGS) -c $<
.cxx.o:
echo Compiling $<...
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $<