aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/Makefile.am16
-rw-r--r--mail/main.c11
2 files changed, 27 insertions, 0 deletions
diff --git a/mail/Makefile.am b/mail/Makefile.am
new file mode 100644
index 0000000000..7c7e9a4af7
--- /dev/null
+++ b/mail/Makefile.am
@@ -0,0 +1,16 @@
+bin_PROGRAMS = evolution-mail
+
+INCLUDES = \
+ -DEVOLUTION_VERSION=\""$(VERSION)"\" \
+ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
+ -DEVOLUTION_ICONSDIR=\""$(iconsdir)"\" \
+ -DEVOLUTION_LOCALEDIR=\""$(datadir)/locale"\" \
+ -I$(srcdir)/../widgets \
+ $(BONOBO_GNOME_CFLAGS)
+
+evolution_mail_SOURCES = \
+ main.c
+
+evolution_mail_LDADD = \
+ ../e-util/libeutil.a \
+ $(BONOBO_GNOME_LIBS)
diff --git a/mail/main.c b/mail/main.c
new file mode 100644
index 0000000000..f5be6543a2
--- /dev/null
+++ b/mail/main.c
@@ -0,0 +1,11 @@
+/*
+ * main.c: Evolution mail reading component
+ *
+ * Authors:
+ * Miguel de Icaza (miguel@helixcode.com)
+ *
+ * (C) 2000 Helix Code, Inc.
+ */
+#include <config.h>
+#include <gnome.h>
+