aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/lib/mp3/examples/standalone/Makefile
blob: 46645421b45867d5df45f3fa62d8f60da4611acd (plain)
1
2
3
4
5
6
decoder: $(wildcard ../../src/*.c) main.c $(wildcard ../../src/*.h) Makefile
	gcc -Og -ggdb -g3 -iquote ../../src -o $@ $(filter %.c, $^) \
		-DMPDEC_ALLOCATOR=malloc -DMPDEC_FREE=free -include stdlib.h
.PHONY: clean
clean:
	rm -f decoder