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