-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.mk
59 lines (51 loc) · 1.68 KB
/
config.mk
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
#
# (C) Copyright 2011
# Alex Waterman <imNotListening@gmail.com>
#
# myrt is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# myrt is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with myrt. If not, see <http://www.gnu.org/licenses/>.
#
# Config for this project.
#
# Specify the version of the project.
VERSION = 0.0.0
# If verbose is specified then turn on compiler messages.
ifeq ($(V), 1)
VERBOSE =
else
VERBOSE = @
endif
# Command definitions.
MAKE := @make --no-print-directory
CC := $(VERBOSE)gcc
ASM := $(VERBOSE)gcc -Wa,-am
LD := $(VERBOSE)gcc
LEX := $(VERBOSE)flex
MSG := @echo
# Set this for optimization levels. Useful during debugging when optimization
# is a real pain in the ass.
OPT := -O3
# Build options.
CFLAGS := -Wall $(OPT) -ggdb -fPIC
CPPFLAGS := -I$(BUILD)/include
LIBS := -lm -lc -lpng -lpthread
# Comment/uncomment for debugging.
CPPFLAGS += #-D_DEBUG
# Extra CPPFLAGS that may be specified.
CPPFLAGS += $(EXTRA_CPPFLAGS)
# Specify the arch for building. If you know your arch is one of the following
# then use it for assembly optimizations; otherwise just leave it as
# unspecified for the generic unoptimized C implementation. For the time being
# there are no assembly implementations. Maybe once I have some time.
#ARCH := x86
#ARCH := x86_64