~jconti/recent-notifications/trunk

« back to all changes in this revision

Viewing changes to indicator/Makefile

  • Committer: Jason Conti
  • Date: 2011-05-18 21:17:09 UTC
  • Revision ID: jason.conti@gmail.com-20110518211709-inr5d289rvcabeor
Removing the indicator directory. indicator-notifications is now hosted at lp:recent-notifications/indicator. Also cleaned up the root directory a bit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DBUS_CFLAGS = $(shell pkg-config --cflags dbus-1)
2
 
DBUS_LIBS = $(shell pkg-config --libs dbus-1)
3
 
GTK_CFLAGS = $(shell pkg-config --cflags gtk+-2.0)
4
 
GTK_LIBS = $(shell pkg-config --libs gtk+-2.0)
5
 
 
6
 
PROGRAMS = example notification notification-glib test-notify-monitor
7
 
 
8
 
all: $(PROGRAMS)
9
 
 
10
 
example: example.c message-menuitem.c
11
 
        gcc -Wall -g $(GTK_CFLAGS) -o example example.c message-menuitem.c $(GTK_LIBS)
12
 
 
13
 
notification: notification.c
14
 
        gcc -Wall -g $(DBUS_CFLAGS) -o notification notification.c $(DBUS_LIBS)
15
 
 
16
 
notification-glib: notification-glib.c
17
 
        gcc -Wall -g $(GTK_CFLAGS) -o notification-glib notification-glib.c $(GTK_LIBS)
18
 
 
19
 
test-notify-monitor: test-notify-monitor.c notify-monitor.c
20
 
        gcc -Wall -g $(GTK_CFLAGS) -o test-notify-monitor test-notify-monitor.c notify-monitor.c $(GTK_LIBS)
21
 
 
22
 
clean:
23
 
        rm $(PROGRAMS)