From a8ef94eb87ed1a7f5e155eed8c3139bc60040293 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 4 Aug 2009 12:46:28 +0200 Subject: Add initial sources with ability to open and view .plist files --- src/Makefile.am | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/Makefile.am (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..f5cf7a8 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,17 @@ +bin_PROGRAMS = gnome-plist-editor + +gnome_plist_editor_SOURCES = \ + gnome-plist-editor.c \ + plist-utils.c + +gnome_plist_editor_CFLAGS = \ + -Wl,--export-dynamic \ + $(GLIB_CFLAGS) \ + $(GTK_CFLAGS) \ + $(LIBPLIST_CFLAGS) + +gnome_plist_editor_LDADD = \ + -lpthread \ + $(GLIB_LIBS) \ + $(GTK_LIBS) \ + $(LIBPLIST_LIBS) -- cgit v1.1-32-gdbae