~jconti/recent-notifications/trunk

« back to all changes in this revision

Viewing changes to indicator/Makefile

  • Committer: Jason Conti
  • Date: 2011-04-14 19:14:59 UTC
  • Revision ID: jason.conti@gmail.com-20110414191459-oakut2btl3g9fc40
The unity app will no longer fail to load if Unity gobject introspection is missing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
GTK_CFLAGS = $(shell pkg-config --cflags gtk+-2.0)
4
4
GTK_LIBS = $(shell pkg-config --libs gtk+-2.0)
5
5
 
6
 
all: example notification notification-glib
 
6
PROGRAMS = example notification notification-glib test-notify-monitor
 
7
 
 
8
all: $(PROGRAMS)
7
9
 
8
10
example: example.c message-menuitem.c
9
11
        gcc -Wall -g $(GTK_CFLAGS) -o example example.c message-menuitem.c $(GTK_LIBS)
14
16
notification-glib: notification-glib.c
15
17
        gcc -Wall -g $(GTK_CFLAGS) -o notification-glib notification-glib.c $(GTK_LIBS)
16
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)