Makefile
author František Kučera <franta-hg@frantovo.cz>
Mon, 04 Jan 2021 15:45:12 +0100
branchv_0
changeset 12 15d87fdd6e6c
parent 4 4d777d6c8024
permissions -rw-r--r--
use Logger instead of messing with STDIO directly
franta-hg@0
     1
# DJM-Fix
franta-hg@0
     2
# Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
franta-hg@0
     3
#
franta-hg@0
     4
# This program is free software: you can redistribute it and/or modify
franta-hg@0
     5
# it under the terms of the GNU General Public License as published by
franta-hg@0
     6
# the Free Software Foundation, version 3 of the License.
franta-hg@0
     7
#
franta-hg@0
     8
# This program is distributed in the hope that it will be useful,
franta-hg@0
     9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@0
    10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@0
    11
# GNU General Public License for more details.
franta-hg@0
    12
#
franta-hg@0
    13
# You should have received a copy of the GNU General Public License
franta-hg@0
    14
# along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@0
    15
franta-hg@4
    16
CXXFLAGS=-fno-omit-frame-pointer -fsanitize=address -g -lpthread $$(pkg-config --libs --cflags alsa)
franta-hg@4
    17
franta-hg@0
    18
all: build/djm-fix
franta-hg@0
    19
franta-hg@0
    20
clean:
franta-hg@0
    21
	rm -rf build
franta-hg@0
    22
franta-hg@1
    23
run: build/djm-fix
franta-hg@1
    24
	build/djm-fix
franta-hg@1
    25
franta-hg@1
    26
.PHONY: all clean run
franta-hg@0
    27
franta-hg@12
    28
build/djm-fix: DJMFix.cpp DJMFix.h AlsaBridge.cpp AlsaBridge.h Logger.cpp Logger.h djm-fix.cpp
franta-hg@0
    29
	mkdir -p build
franta-hg@12
    30
	g++ -o $@ DJMFix.cpp AlsaBridge.cpp Logger.cpp djm-fix.cpp $(CXXFLAGS)