From: Andrea Zagli Date: Sat, 16 Feb 2013 12:07:25 +0000 (+0100) Subject: Aggiornati gli autotools. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=748b1126a7902eac5be35ce54cee064255818dc9;p=albonline%2Fbe Aggiornati gli autotools. Aggiunti i file di progetto di Anjuta. --- diff --git a/.anjuta/default.profile b/.anjuta/default.profile new file mode 100644 index 0000000..054294f --- /dev/null +++ b/.anjuta/default.profile @@ -0,0 +1,8 @@ + + + + + + diff --git a/.anjuta/session/anjuta.session b/.anjuta/session/anjuta.session new file mode 100644 index 0000000..e7d89dc --- /dev/null +++ b/.anjuta/session/anjuta.session @@ -0,0 +1,28 @@ +[Anjuta] +Maximized=1 +Geometry=1024x687+0+24 + +[File Loader] +Files=../../src/main.c#19%%%../../configure.ac#6 + +[Document Manager] +bookmarks=\n\n + +[Project Manager] +Shortcut=messi//src//messi +Expand=messi + +[Execution] +Run in terminal=2 +Working directories=../../../messi + +[Build] +Configuration list=1:Default:%%%1:Debug:Debug%%%1:Profiling:Profiling%%%1:Optimized:Optimized +Selected Configuration=Default +BuildArgs/Default=--enable-maintainer-mode +BuildArgs/Debug=--enable-maintainer-mode 'CFLAGS=-g -O0' 'CXXFLAGS=-g -O0' 'JFLAGS=-g -O0' 'FFLAGS=-g -O0' +BuildArgs/Profiling=--enable-maintainer-mode 'CFLAGS=-g -pg' 'CXXFLAGS=-g -pg' 'JFLAGS=-g -pg' 'FFLAGS=-g -pg' +BuildArgs/Optimized=--enable-maintainer-mode 'CFLAGS=-O2' 'CXXFLAGS=-O2' 'JFLAGS=-O2' 'FFLAGS=-O2' + +[Debugger] +Stop at beginning=2 diff --git a/.anjuta/session/dock-layout.xml b/.anjuta/session/dock-layout.xml new file mode 100644 index 0000000..85247fc --- /dev/null +++ b/.anjuta/session/dock-layout.xml @@ -0,0 +1,4 @@ + + + + diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db new file mode 100644 index 0000000..80bd4c9 Binary files /dev/null and b/.anjuta_sym_db.db differ diff --git a/.gitignore b/.gitignore index 8d3ba0c..b6d9ec9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.o *~ +messi.exe src/messi COPYING INSTALL diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..68983f8 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,23 @@ +#!/bin/bash +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +PKG_NAME="opengov" + +(test -f $srcdir/configure.ac \ + && test -d $srcdir/src \ + && test -f $srcdir/src/main.c) || { + echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" + echo " top-level "\`$PKG_NAME\'" directory" + exit 1 +} + +which gnome-autogen.sh || { + echo "You need to install gnome-common from GNOME and make" + echo "sure the gnome-autogen.sh script is in your \$PATH." + exit 1 +} + +USE_GNOME2_MACROS=1 . gnome-autogen.sh diff --git a/configure.ac b/configure.ac index 4064409..1822f63 100644 --- a/configure.ac +++ b/configure.ac @@ -1,14 +1,21 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. +m4_define(major, 0) +m4_define(minor, 0) +m4_define(micro, 1) + AC_PREREQ([2.61]) -AC_INIT([messi], [0.0.1], [azagli@libero.it]) +AC_INIT([messi], [major.minor.micro], [azagli@libero.it]) AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE(-Wall) + AM_MAINTAINER_MODE +m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) + AC_CANONICAL_SYSTEM # Checks for programs. @@ -27,6 +34,26 @@ AC_SUBST(MESSI_LIBS) # Checks for library functions. +dnl ****************************** +dnl Check for Operating System +dnl ****************************** + +platform_win32=no + +case "$host" in +*-mingw*) + platform_win32=yes + AC_CHECK_TOOL(WINDRES, windres, windres) + AC_SUBST(WINDRES) + ;; +esac + +AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes]) + +AC_SUBST(V_MAJOR, major) +AC_SUBST(V_MINOR, minor) +AC_SUBST(V_MICRO, micro) + AC_CONFIG_FILES([ Makefile data/Makefile diff --git a/messi.anjuta b/messi.anjuta new file mode 100644 index 0000000..5e1cf44 --- /dev/null +++ b/messi.anjuta @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + +