~jconti/recent-notifications/trunk

« back to all changes in this revision

Viewing changes to indicator-notify/Makefile

  • Committer: Jason Conti
  • Date: 2011-03-26 21:20:00 UTC
  • Revision ID: jason.conti@gmail.com-20110326212000-48rj1zased29tne4
Ported Notification.py to gobject introspection, everything except dbus. Going to attempt that next, but may revert if it doesn't work so well yet.

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
 
all: example notification
7
 
 
8
 
example: example.c
9
 
        gcc -Wall -g $(GTK_CFLAGS) -o example example.c $(GTK_LIBS)
10
 
 
11
 
notification: notification.c
12
 
        gcc -Wall -g $(DBUS_CFLAGS) -o notification notification.c $(DBUS_LIBS)