A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
at master 47 lines 2.0 kB view raw
1# __________ __ ___. 2# Open \______ \ ____ ____ | | _\_ |__ _______ ___ 3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / 4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6# \/ \/ \/ \/ \/ 7# $Id$ 8# 9 10TOOLSCFLAGS := -O -g -W -Wall -Wshadow -pedantic -I$(ROOTDIR)/tools 11 12$(TOOLSDIR)/scramble: $(TOOLSDIR)/scramble.c $(TOOLSDIR)/iriver.c \ 13 $(TOOLSDIR)/mi4.c $(TOOLSDIR)/gigabeat.c \ 14 $(TOOLSDIR)/gigabeats.c $(TOOLSDIR)/telechips.c \ 15 $(TOOLSDIR)/iaudio_bl_flash.c \ 16 $(TOOLSDIR)/creative.c $(TOOLSDIR)/hmac-sha1.c \ 17 $(TOOLSDIR)/rkw.c 18$(TOOLSDIR)/descramble: $(TOOLSDIR)/descramble.c $(TOOLSDIR)/iriver.c $(TOOLSDIR)/gigabeat.c 19 20$(TOOLSDIR)/rdf2binary: $(TOOLSDIR)/rdf2binary.c 21$(TOOLSDIR)/convbdf: $(TOOLSDIR)/convbdf.c 22$(TOOLSDIR)/codepages: $(TOOLSDIR)/codepages.c $(TOOLSDIR)/codepage_tables.c 23$(TOOLSDIR)/mkboot: $(TOOLSDIR)/mkboot.c 24$(TOOLSDIR)/wavtrim: $(TOOLSDIR)/wavtrim.c 25$(TOOLSDIR)/voicefont: $(TOOLSDIR)/voicefont.c 26 27$(TOOLSDIR)/iaudio_bl_flash.c $(TOOLSDIR)/iaudio_bl_flash.h: $(TOOLSDIR)/iaudio_bl_flash.bmp $(TOOLSDIR)/bmp2rb 28 $(call PRINTS,BMP2RB $(@F)) 29 $(SILENT)$(TOOLSDIR)/bmp2rb -f 7 -h $(TOOLSDIR) $< >$(TOOLSDIR)/iaudio_bl_flash.c 30 31$(TOOLSDIR)/bmp2rb: $(TOOLSDIR)/bmp2rb.c 32 $(call PRINTS,CC $(@F)) 33 $(SILENT)$(HOSTCC) -DAPPLICATION_NAME=\"$@\" $(TOOLSCFLAGS) $+ -o $@ 34 35$(TOOLSDIR)/uclpack: $(TOOLSDIR)/ucl/uclpack.c $(wildcard $(TOOLSDIR)/ucl/src/*.c) 36 $(call PRINTS,CC $(@F))$(HOSTCC) $(TOOLSCFLAGS) -I$(TOOLSDIR)/ucl \ 37 -I$(TOOLSDIR)/ucl/include -o $@ $^ 38 39$(TOOLSDIR)/convttf: $(TOOLSDIR)/convttf.c 40 $(call PRINTS,CC $(@F)) 41 $(SILENT)$(HOSTCC) $(TOOLSFLAGS) -lm -O2 -Wall -g $+ -o $@ \ 42 `pkg-config --cflags --libs freetype2` 43 44# implicit rule for simple tools 45$(TOOLSDIR)/%: $(TOOLSDIR)/%.c 46 $(call PRINTS,CC $(subst $(ROOTDIR)/,,$@)) 47 $(SILENT)$(HOSTCC) $(TOOLSCFLAGS) -o $@ $^