aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoreugeni <eugeni@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>2009-03-23 15:48:44 +0000
committereugeni <eugeni@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>2009-03-23 15:48:44 +0000
commitaabafd4a372c4eba90312a58fa5a9aa493bdd1ee (patch)
treec8fde9f744d0982348f181f6f847ee9353db438c /Makefile
parentc333cea5dd6b1c8e9da36e00eae25044682894bd (diff)
downloads2u-aabafd4a372c4eba90312a58fa5a9aa493bdd1ee.tar
s2u-aabafd4a372c4eba90312a58fa5a9aa493bdd1ee.tar.gz
s2u-aabafd4a372c4eba90312a58fa5a9aa493bdd1ee.tar.bz2
s2u-aabafd4a372c4eba90312a58fa5a9aa493bdd1ee.tar.xz
s2u-aabafd4a372c4eba90312a58fa5a9aa493bdd1ee.zip
Added support for msec notifications.
git-svn-id: svn+ssh://svn.mandriva.com/svn/soft/s2u/trunk@254590 99302b65-d5f7-0310-b3dd-f8cd6f4e3d94
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ffec8df..963ab80 100644
--- a/Makefile
+++ b/Makefile
@@ -18,15 +18,15 @@ FILES = Makefile README hostname-post s2u.c s2u.sh \
DEFS = -DDBUS_API_SUBJECT_TO_CHANGE=1
CC = gcc
CFLAGS = -O2 -pipe -Wall -Werror
-INCLUDES = $(shell pkg-config dbus-glib-1 gdk-2.0 --cflags)
-LDFLAGS = $(shell pkg-config dbus-glib-1 gdk-2.0 --libs)
+INCLUDES = $(shell pkg-config dbus-glib-1 gdk-2.0 gtk+-2.0 --cflags)
+LIBS = $(shell pkg-config dbus-glib-1 gdk-2.0 gtk+-2.0 --libs) -lnotify
COMPILE = $(CC) $(DEFS) $(CFLAGS)
all: s2u
s2u: s2u.o
- $(CC) $(LDFLAGS) -o $@ $^
+ $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
.c.o:
$(COMPILE) $(INCLUDES) -c $<