*.o
+*.lo
+*.la
*~
-*.in
-src/organigramma
+*.pc
+libtool
+ltmain.sh
+src/territorio
COPYING
INSTALL
Makefile
depcomp
install-sh
missing
-src/.deps/
+.deps
+.libs
stamp-h1
.anjuta*
*exe
-SUBDIRS = src data docs
+SUBDIRS = src libreria data docs
distclean-local:
if test "$(srcdir)" = "."; then :; else \
--- /dev/null
+/* config.h.in. Generated from configure.ac by autoheader. */
+
+/* Define to 1 if you have the <dlfcn.h> header file. */
+#undef HAVE_DLFCN_H
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+#undef HAVE_INTTYPES_H
+
+/* Define to 1 if you have the <memory.h> header file. */
+#undef HAVE_MEMORY_H
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#undef HAVE_STDINT_H
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#undef HAVE_STDLIB_H
+
+/* Define to 1 if you have the <strings.h> header file. */
+#undef HAVE_STRINGS_H
+
+/* Define to 1 if you have the <string.h> header file. */
+#undef HAVE_STRING_H
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#undef HAVE_SYS_STAT_H
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#undef HAVE_SYS_TYPES_H
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#undef HAVE_UNISTD_H
+
+/* Define to the sub-directory in which libtool stores uninstalled libraries.
+ */
+#undef LT_OBJDIR
+
+/* Name of package */
+#undef PACKAGE
+
+/* Define to the address where bug reports for this package should be sent. */
+#undef PACKAGE_BUGREPORT
+
+/* Define to the full name of this package. */
+#undef PACKAGE_NAME
+
+/* Define to the full name and version of this package. */
+#undef PACKAGE_STRING
+
+/* Define to the one symbol short name of this package. */
+#undef PACKAGE_TARNAME
+
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
+/* Define to the version of this package. */
+#undef PACKAGE_VERSION
+
+/* Define to 1 if you have the ANSI C header files. */
+#undef STDC_HEADERS
+
+/* Version number of package */
+#undef VERSION
AC_CANONICAL_SYSTEM
+LT_INIT
+
+AC_LIBTOOL_WIN32_DLL
+
# Checks for programs.
AC_PROG_CC
+AC_PROG_LIBTOOL
+AC_PROG_RANLIB
# Checks for libraries.
PKG_CHECK_MODULES(TERRITORIO, [gio-2.0 >= 2.20
# Checks for library functions.
AC_CONFIG_FILES([
+ libterritorio.pc
Makefile
src/Makefile
+ libreria/Makefile
data/Makefile
data/territorio/Makefile
data/territorio/form/Makefile
--- /dev/null
+guidir = $(datadir)/$(PACKAGE)/gui
+formdir = $(datadir)/$(PACKAGE)/form
+
+AM_CPPFLAGS = $(TERRITORIO_CFLAGS) \
+ -DGUIDIR=\""$(guidir)"\" \
+ -DFORMDIR=\""$(formdir)"\"
+
+LIBS = $(TERRITORIO_LIBS) \
+ -export-dynamic
+
+lib_LTLIBRARIES = libterritorio.la
+
+libterritorio_la_SOURCES = \
+ ../src/aggregazioneterritoriale.c \
+ ../src/aggregazioneterritoriale.h \
+ ../src/aggregazioniterritoriali.c \
+ ../src/aggregazioniterritoriali.h \
+ ../src/commons.h \
+ ../src/comune.c \
+ ../src/comune.h \
+ ../src/comuni.c \
+ ../src/comuni.h \
+ ../src/province.c \
+ ../src/province.h \
+ ../src/provincia.c \
+ ../src/provincia.h \
+ ../src/regione.c \
+ ../src/regione.h \
+ ../src/regioni.c \
+ ../src/regioni.h \
+ ../src/stati.c \
+ ../src/stati.h \
+ ../src/stato.c \
+ ../src/stato.h \
+ ../src/tipiaggregazioneterritoriale.c \
+ ../src/tipiaggregazioneterritoriale.h \
+ ../src/tipoaggregazioneterritoriale.c \
+ ../src/tipoaggregazioneterritoriale.h \
+ ../src/via.c \
+ ../src/via.h \
+ ../src/vie.c \
+ ../src/vie.h
+
+libterritorio_la_LDFLAGS = -no-undefined
--- /dev/null
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: @PACKAGE_NAME@
+Description: Libreria con l'interfaccia per la gestione del territorio.
+Version: @PACKAGE_VERSION@
+Requires: glib-2.0
+Libs: -L${libdir} -lterritorio
+Cflags: -I${includedir}