From 26d55d2419c3c2c01f8ed3af5eaa1b109351ed39 Mon Sep 17 00:00:00 2001 From: Jesse van den Kieboom Date: Sun, 9 Oct 2005 16:14:49 +0000 Subject: [PATCH] Initial import --- src/widgets/Makefile.am | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/widgets/Makefile.am diff --git a/src/widgets/Makefile.am b/src/widgets/Makefile.am new file mode 100644 index 0000000..ef6b32b --- /dev/null +++ b/src/widgets/Makefile.am @@ -0,0 +1,17 @@ +## Process this file with automake to produce Makefile.in +INCLUDES = \ + -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ + -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ + @PACKAGE_CFLAGS@ \ + @RUBYINCLUDE@ + +noinst_LTLIBRARIES = libwidgets.la + +libwidgets_la_SOURCES = gm-app-view.c gm-app-view.h \ + gm-world-view.c gm-world-view.h \ + gm-world-text-view.c gm-world-text-view.h \ + gm-world-input-view.c gm-world-input-view.h + +libwidgets_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS) @RUBYLINK@ + +AM_CFLAGS = -Werror -Wall -Wsign-compare