]> saetta.ns0.it Git - solipa/territorio/commitdiff
Modifiche agli autotools (con compilazione a buon fine) per creazione anche di una...
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Mon, 18 Oct 2010 10:52:37 +0000 (12:52 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Mon, 18 Oct 2010 10:52:37 +0000 (12:52 +0200)
.gitignore
Makefile.am
config.h.in [new file with mode: 0644]
configure.ac
libreria/Makefile.am [new file with mode: 0644]
libterritorio.pc.in [new file with mode: 0644]

index 5fbe73017dd1418e8849ee88cc4306fd9e559f51..26f98da5f0c0e1588fd2c66b7f5d226177a5c35b 100644 (file)
@@ -1,7 +1,11 @@
 *.o
+*.lo
+*.la
 *~
-*.in
-src/organigramma
+*.pc
+libtool
+ltmain.sh
+src/territorio
 COPYING
 INSTALL
 Makefile
@@ -17,7 +21,8 @@ configure
 depcomp
 install-sh
 missing
-src/.deps/
+.deps
+.libs
 stamp-h1
 .anjuta*
 *exe
index db05b3fbd90906b68d5258a62915588bee2aaf99..baf6b257aa63cb2516034ab33e2a6aefcc18d54e 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS = src data docs
+SUBDIRS = src libreria data docs
 
 distclean-local:
        if test "$(srcdir)" = "."; then :; else \
diff --git a/config.h.in b/config.h.in
new file mode 100644 (file)
index 0000000..423fcf8
--- /dev/null
@@ -0,0 +1,62 @@
+/* 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
index 150b5d7c18834d6a4ee5e74efe494ba7beb5bacc..d0bf6aeddc3743a1274487f0bb533cb478433e5f 100644 (file)
@@ -11,8 +11,14 @@ AM_MAINTAINER_MODE
 
 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
@@ -30,8 +36,10 @@ AC_SUBST(TERRITORIO_LIBS)
 # Checks for library functions.
 
 AC_CONFIG_FILES([
+       libterritorio.pc
        Makefile
        src/Makefile
+       libreria/Makefile
        data/Makefile
        data/territorio/Makefile
        data/territorio/form/Makefile
diff --git a/libreria/Makefile.am b/libreria/Makefile.am
new file mode 100644 (file)
index 0000000..4414fae
--- /dev/null
@@ -0,0 +1,44 @@
+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
diff --git a/libterritorio.pc.in b/libterritorio.pc.in
new file mode 100644 (file)
index 0000000..0948436
--- /dev/null
@@ -0,0 +1,11 @@
+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}