add files in sorted order; check for gaps in flac files (using seektables)
[soepkiptng.git] / src / Makefile
blobf4cd035bcbdf1d08051f532f8eacb2fdf1b5ae2e
2 DSTDIR:=$(shell pwd)/../bin
3 PROGRAMS=soepkiptng_play resample
5 default:
6 for i in $(PROGRAMS); do make -C $$i; done
7 @echo
8 @echo all programs built successfully.
10 install:
11 install -d $(DSTDIR)
12 for i in $(PROGRAMS); do make DSTDIR=$(DSTDIR)/ -C $$i install; done
14 clean:
15 for i in $(PROGRAMS); do make -C $$i clean; done