aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: aec5a99544bf19b13a3b1b6e73b8211a21924008 (plain)
1
2
3
4
5
6
7
8
9
10
11
CFLAGS := -Wall -Wextra -pedantic -O2 $(CFLAGS)
LDFLAGS := -lpulse -lm $(LDFLAGS)

pulsemix: pulsemix.o

install: pulsemix
	mkdir -p $(DESTDIR)/usr/bin
	install -m755 pulsemix $(DESTDIR)/usr/bin/pulsemix

clean:
	$(RM) pulsemix pulsemix.o