From 90458ec25bc1db8067e524a3182ad7aa48f7515d Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Mon, 18 Oct 2010 12:52:37 +0200 Subject: [PATCH] Modifiche agli autotools (con compilazione a buon fine) per creazione anche di una libreria. --- .gitignore | 11 +++++--- Makefile.am | 2 +- config.h.in | 62 ++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 8 ++++++ libreria/Makefile.am | 44 +++++++++++++++++++++++++++++++ libterritorio.pc.in | 11 ++++++++ 6 files changed, 134 insertions(+), 4 deletions(-) create mode 100644 config.h.in create mode 100644 libreria/Makefile.am create mode 100644 libterritorio.pc.in diff --git a/.gitignore b/.gitignore index 5fbe730..26f98da 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/Makefile.am b/Makefile.am index db05b3f..baf6b25 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 index 0000000..423fcf8 --- /dev/null +++ b/config.h.in @@ -0,0 +1,62 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the 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 diff --git a/configure.ac b/configure.ac index 150b5d7..d0bf6ae 100644 --- a/configure.ac +++ b/configure.ac @@ -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 index 0000000..4414fae --- /dev/null +++ b/libreria/Makefile.am @@ -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 index 0000000..0948436 --- /dev/null +++ b/libterritorio.pc.in @@ -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} -- 2.49.0