aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
blob: 3dab7563f3e540f4a06dd7cc84f9dbd3d3f89511 (plain) (blame)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Copyright (C) 2015  Mattias Andrée <maandree@member.fsf.org>
# 
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.  This file is offered as-is,
# without any warranty.


### This file will be stored to Makefile once you have run ./configure. ###
### See INSTALL for information on how to install this package.         ###



# List of translations to install.
#LOCALES =

# List of man page translations to install.
#MAN_LOCALES =

# Can change these variables with ./configure in the same why you
# would configure them when running make.



##### What is below this line is configurable, but is seldom useful. #####


# Additional options for compiling info and HTML manuals.
INFO_FLAGS =

# Additional options for compiling DVI, PDF, and PostScript manuals.
TEXINFO_FLAGS =

# The name of the package as it should be installed.
PKGNAME = sat



##### Nothing interesting below this. #####


# In case you want add some configurations. Primarily
# intended for maintainers. Perhaps add GPG_KEY here.
# Of course, you can declare everthing with ./configure,
# but with this you are less likely to forget it.
-include .make-configurations


# YOU, AS A USER, SHOULD NOT CHANGE THESE VARIABLES. {{
# They specify how the reusable makefiles in mk/ shall behave.

# Package information.
_PROJECT = sat
_VERSION = 1.0

# Used by mk/lang-c.mk
_C_STD = c99
_PEDANTIC = yes
_BIN = sat satq satrm satr satd
_LIBEXEC = satd-add satd-diminished satd-timer
_OBJ_sat = sat client parse_time
_OBJ_satq = satq daemon
_OBJ_satrm = satrm daemon
_OBJ_satr = satr daemon
_OBJ_satd = satd daemon daemonise
_OBJ_satd-add = satd-add daemon
_OBJ_satd-diminished = satd-diminished
_OBJ_satd-timer = satd-timer daemon
_HEADER_DIRLEVELS = 1
_CPPFLAGS = -D'PACKAGE="$(PKGNAME)"' -D'PROGRAM_VERSION="$(_VERSION)"'

# Used by mk/texinfo.mk
_TEXINFO_DIRLEVELS = 2
_INFOPARTS = 0
_HAVE_TEXINFO_MANUAL = yes
_HTML_FILES = Free-Software-Needs-Free-Documentation.html  GNU-Free-Documentation-License.html  \
              index.html  Invoking.html  Overview.html  Hooks.html  Output.html

# Used by mk/man.mk
_MAN_PAGE_SECTIONS = 1
_MAN_1 = sat satr satrm satq satd

# Used by mk/copy.mk
_COPYING = COPYING

# Used by mk/dist.mk
___EVERYTHING_INFO = sat titlepage-data content hardcopy-copying  \
                     appx/fdl appx/free-software-needs-free-documentation  \
                     chap/invoking chap/overview chap/hooks chap/output  \
                     reusable/macros reusable/paper reusable/titlepage
___EVERYTHING_H = client common daemon daemonise parse_time
_EVERYTHING = $(foreach F,$(___EVERYTHING_INFO),doc/info/$(F).texinfo)  \
              $(foreach F,$(___EVERYTHING_H),src/$(F).h)  \
              $(__EVERYTHING_ALL_COMMON) DEPENDENCIES INSTALL NEWS src/README

# }}


# All of the make rules and the configurations.
include $(v)mk/all.mk

ifdef DEBUG
ifneq ($(DEBUG),strace)
ifneq ($(DEBUG),valgrind)
_CPPFLAGS += -DDEBUG='1'
endif
endif
ifeq ($(DEBUG),strace)
_CPPFLAGS += -DDEBUG='2'
endif
ifeq ($(DEBUG),valgrind)
_CPPFLAGS += -DDEBUG='3'
endif
endif