Makefile
author František Kučera <franta-hg@frantovo.cz>
Wed, 20 May 2020 23:39:39 +0200
branchv_0
changeset 2 f569e23f1b3f
parent 0 dcdd12e654da
permissions -rw-r--r--
Added tag v0.1 for changeset b3c075114b95

sysex2smf: sysex2smf.cpp
	g++ -fno-omit-frame-pointer -fsanitize=address -o sysex2smf sysex2smf.cpp $(shell pkg-config --cflags --libs smf)

clean:
	rm -f sysex2smf
	rm -f test.mid

test.txt:
	echo ahoj > test.txt

test.syx: test.txt
	cat test.txt | tr -d \\n | ../mt-32-display/mt-32-display | sed -r 's/[^abcdefABCDEF0-9]|(--[^--]*--)//g' | sed 's/../\\\\x\0/g' | xargs echo -en > test.syx

test.mid: sysex2smf test.syx
	cat test.syx | ./sysex2smf test.mid