From 7a3539207c0b03296cbe69c3e84642386b30977a Mon Sep 17 00:00:00 2001 From: Stéphane Raimbault Date: Fri, 2 Apr 2010 12:50:13 +0200 Subject: [PATCH] Add foreign option to AM_INIT_AUTOMAKE --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 5605aa7..f69e7c4 100644 --- a/configure.ac +++ b/configure.ac @@ -3,9 +3,9 @@ AC_PREREQ(2.63) AC_INIT([libmodbus],[2.1.0],[stephane.raimbault@gmail.com]) -AC_CONFIG_SRCDIR([src/modbus.c]) +AC_CONFIG_SRCDIR([modbus/modbus.c]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE([1.11]) +AM_INIT_AUTOMAKE([1.11 foreign]) # enable nice build output on automake1.11 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) @@ -38,7 +38,7 @@ AC_CHECK_FUNCS([gettimeofday inet_ntoa memset select socket strerror]) AC_CONFIG_FILES([ Makefile - src/Makefile + modbus/Makefile tests/Makefile modbus.pc ]) -- libgit2 0.21.4