From c75c2cbeb5e3459165ee5a97c450f8fffc27176e Mon Sep 17 00:00:00 2001 From: ch1p Date: Thu, 14 Dec 2017 16:28:14 +0300 Subject: initial commit --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5240a8e --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +CC=g++ +LIBS=libpulse dbus-1 +CFLAGS=-std=c++11 -Wall -pedantic -Wextra `pkg-config --cflags ${LIBS}` +LDFLAGS=`pkg-config --libs ${LIBS}` + +all: main + +main: main.o + ${CC} main.o -o pulse-volume-monitor ${LDFLAGS} + +main.o: + ${CC} ${CFLAGS} -c main.cpp -- cgit v1.2.3