summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2010-07-20 19:30:27 +0200
committerMichael Stapelberg <michael@stapelberg.de>2010-07-20 19:33:41 +0200
commiteb46963d4c88a75f1ac336275daf3d0d72a904ba (patch)
treef1f898c76925ec8c6cd1dcc9ad2af1b7f1b77a99 /Makefile
parentd8b6f031447434c88bc7d5eb1303c14d51e14238 (diff)
Implement ALSA volume support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9f61eef..c7635dd 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CFLAGS+=-g
CFLAGS+=-std=gnu99
CFLAGS+=-pedantic
CFLAGS+=-DPREFIX=\"\"
-CFLAGS+=-I.
+CFLAGS+=-Iinclude
LDFLAGS+=-lconfuse
VERSION=$(shell git describe --tags --abbrev=0)
@@ -11,7 +11,7 @@ VERSION=$(shell git describe --tags --abbrev=0)
ifeq ($(shell uname),Linux)
CFLAGS+=-DLINUX
CFLAGS+=-D_GNU_SOURCE
-LDFLAGS+=-liw
+LDFLAGS+=-liw -lasound
endif
ifeq ($(shell uname),GNU/kFreeBSD)