A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
at master 28 lines 721 B view raw
1# __________ __ ___. 2# Open \______ \ ____ ____ | | _\_ |__ _______ ___ 3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / 4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6# \/ \/ \/ \/ \/ 7# $Id$ 8# 9 10all: bin2note 11 12bin2note: bin2note.c 13 gcc -W -Wall -o bin2note bin2note.c 14 15test.htm: bin2note test.bin 16 ./bin2note test.bin test.htm 17 18test.o: test.S 19 arm-elf-as -o $@ $< 20 21test.elf: test.o 22 arm-elf-ld -e 0 -Ttext=0 -o $@ $< 23 24test.bin: test.elf 25 arm-elf-objcopy -O binary $< $@ 26 27clean: 28 rm -f bin2note test.o test.elf test.bin test.htm