author | František Kučera <franta-hg@frantovo.cz> |
Mon, 04 Jan 2021 00:15:56 +0100 | |
branch | v_0 |
changeset 10 | 4d95b089457d |
parent 4 | 4d777d6c8024 |
child 12 | 15d87fdd6e6c |
permissions | -rw-r--r-- |
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@2 | 28 |
build/djm-fix: DJMFix.cpp DJMFix.h AlsaBridge.cpp AlsaBridge.h djm-fix.cpp |
franta-hg@0 | 29 |
mkdir -p build |
franta-hg@4 | 30 |
g++ -o $@ DJMFix.cpp AlsaBridge.cpp djm-fix.cpp $(CXXFLAGS) |