Makefile
author František Kučera <franta-hg@frantovo.cz>
Fri, 18 Dec 2020 23:19:32 +0100
branchv_0
changeset 2 f34476ab597f
parent 1 98274757fcf6
child 3 e238528eb19c
permissions -rw-r--r--
background thread + AlsaBridge skeleton
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@0
    16
all: build/djm-fix
franta-hg@0
    17
franta-hg@0
    18
clean:
franta-hg@0
    19
	rm -rf build
franta-hg@0
    20
franta-hg@1
    21
run: build/djm-fix
franta-hg@1
    22
	build/djm-fix
franta-hg@1
    23
franta-hg@1
    24
.PHONY: all clean run
franta-hg@0
    25
franta-hg@2
    26
build/djm-fix: DJMFix.cpp DJMFix.h AlsaBridge.cpp AlsaBridge.h djm-fix.cpp
franta-hg@0
    27
	mkdir -p build
franta-hg@2
    28
	g++ -o $@ DJMFix.cpp AlsaBridge.cpp djm-fix.cpp -lpthread