diff options
author | Glynn Foster <gman@src.gnome.org> | 2003-01-03 13:26:04 +0000 |
---|---|---|
committer | Glynn Foster <gman@src.gnome.org> | 2003-01-03 13:26:04 +0000 |
commit | 48c1564ac5ef431e9111606e40488d04a96f3059 (patch) | |
tree | 85ae5d577ecfd41f8692fedc15d50bfe9cbd5b15 /src/Makefile.am | |
download | zenity-48c1564ac5ef431e9111606e40488d04a96f3059.tar.gz zenity-48c1564ac5ef431e9111606e40488d04a96f3059.tar.bz2 zenity-48c1564ac5ef431e9111606e40488d04a96f3059.zip |
Initial revision
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 00000000..11e0816c --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,28 @@ +bin_PROGRAMS = zenity + +zenity_SOURCES = \ + main.c \ + zenity.h \ + calendar.c \ + msg.c \ + fileselection.c \ + entry.c \ + text.c \ + progress.c \ + tree.c \ + util.h \ + util.c + +INCLUDES = \ + $(ZENITY_CFLAGS) \ + -I$(includedir) \ + -DGNOMELOCALEDIR=\""$(zenitylocaledir)"\" \ + -DZENITY_DATADIR=\""$(datadir)/zenity"\" + +zenity_LDADD = \ + $(ZENITY_LIBS) + +gladedir = $(datadir)/zenity + +glade_DATA = \ + zenity.glade |