1DESTDIR=`pwd`/debian/wavegain
2
3all:
4	gcc *.c -o wavegain -DHAVE_CONFIG_H -lm -lsndfile
5
6install:
7	install -d $(DESTDIR)/usr/bin/
8	install -m 0755 wavegain $(DESTDIR)/usr/bin/
9
10clean:
11	rm -Rf wavegain *.o
12