aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 47ae23cc90c48b619d2242460af109fca6ea8739 (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 $(DESTDIR)/usr/bin
	install -m755 pulsemix $(DESTDIR)/usr/bin/pulsemix

clean:
	$(RM) pulsemix pulsemix.o