2003-01-03 13:26:04 +00:00
|
|
|
bin_PROGRAMS = zenity
|
|
|
|
|
2003-05-27 21:57:46 +00:00
|
|
|
bin_SCRIPTS = gdialog
|
|
|
|
|
2003-01-03 13:26:04 +00:00
|
|
|
zenity_SOURCES = \
|
|
|
|
main.c \
|
2004-12-07 00:17:16 +00:00
|
|
|
option.c \
|
|
|
|
option.h \
|
2003-01-03 13:26:04 +00:00
|
|
|
zenity.h \
|
|
|
|
calendar.c \
|
|
|
|
msg.c \
|
|
|
|
fileselection.c \
|
|
|
|
entry.c \
|
|
|
|
text.c \
|
|
|
|
progress.c \
|
|
|
|
tree.c \
|
Add new notification icon. Update for new files. Restructure code a little
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 07:51:51 +00:00
|
|
|
notification.c \
|
|
|
|
eggtrayicon.c \
|
|
|
|
eggtrayicon.h \
|
2003-01-14 03:16:47 +00:00
|
|
|
about.c \
|
2003-01-03 13:26:04 +00:00
|
|
|
util.h \
|
|
|
|
util.c
|
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
$(ZENITY_CFLAGS) \
|
|
|
|
-I$(includedir) \
|
|
|
|
-DGNOMELOCALEDIR=\""$(zenitylocaledir)"\" \
|
|
|
|
-DZENITY_DATADIR=\""$(datadir)/zenity"\"
|
|
|
|
|
|
|
|
zenity_LDADD = \
|
2004-07-18 23:37:06 +00:00
|
|
|
$(ZENITY_LIBS) \
|
|
|
|
$(X_LIBS)
|
2003-01-03 13:26:04 +00:00
|
|
|
|
|
|
|
gladedir = $(datadir)/zenity
|
|
|
|
|
|
|
|
glade_DATA = \
|
|
|
|
zenity.glade
|
2003-01-14 23:40:47 +00:00
|
|
|
|
2003-05-27 21:57:46 +00:00
|
|
|
DISTCLEANFILES= \
|
|
|
|
gdialog
|
|
|
|
|
2003-01-14 23:40:47 +00:00
|
|
|
EXTRA_DIST = \
|
2003-05-27 21:57:46 +00:00
|
|
|
$(glade_DATA) \
|
|
|
|
gdialog \
|
|
|
|
gdialog.in
|