-
Notifications
You must be signed in to change notification settings - Fork 21
/
Makefile.config
38 lines (31 loc) · 1.03 KB
/
Makefile.config
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
##
## This file is part of hl://Dig <https://solbu.github.io/hldig/>
##
## Copyright (c) 2017 The hl://Dig Group
## For copyright details, see the file COPYING in your distribution
## or the GNU Library General Public License version 2 or later
## <http://www.gnu.org/copyleft/lgpl.html>
#
# To compile with profiling do the following:
#
# make CFLAGS=-g CXXFLAGS=-g PROFILING=-p all
#
AUTOMAKE_OPTIONS = foreign no-dependencies
PACKAGE = @PACKAGE@
VERSION = @VERSION@
AM_CPPFLAGS= \
-DDEFAULT_CONFIG_FILE=\"$(DEFAULT_CONFIG_FILE)\" \
-I$(top_srcdir)/include -I$(top_srcdir)/hllib \
-I$(top_srcdir)/hlnet -I$(top_srcdir)/hlcommon \
-I$(top_srcdir)/hlword \
-I$(top_srcdir)/db -I$(top_builddir)/db \
$(LOCAL_DEFINES) $(PROFILING) \
-DLOCALEDIR=\"$(localedir)\"
HLLIBS= $(top_builddir)/hlnet/libhlnet.la \
$(top_builddir)/hlcommon/libcommon.la \
$(top_builddir)/hlword/libhlword.la \
$(top_builddir)/hllib/libhl.la \
$(top_builddir)/db/libhldb.la
localedir = @localedir@
LIBS = @LIBINTL@ @LIBS@
LDADD = $(HLLIBS) @LIBINTL@