-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.mk
50 lines (43 loc) · 1.34 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
#
# (C) Copyright 2012
# Alex Waterman <imNotListening@gmail.com>
#
# MUSIC 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.
#
# MUSIC 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 MUSIC. 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
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 #-D_MUSIC_USE_TCP
LIBS := -lm -lc -lpng -lpthread
PROJ_LIBS := -L$(BUILD)/streaming -lmstream
# Comment/uncomment for debugging.
CPPFLAGS += #-D_DEBUG