forked from rscada/libcanopen
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfigure.ac
More file actions
43 lines (32 loc) · 1.06 KB
/
configure.ac
File metadata and controls
43 lines (32 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
dnl ----------------------------------------------------------------------------
dnl Copyright (C) 2012, Robert Johansson <rob@raditex.nu>, Raditex Control AB
dnl All rights reserved.
dnl
dnl This file is part of rSCADA.
dnl http://www.rSCADA.se
dnl info@rscada.se
dnl
dnl ----------------------------------------------------------------------------
AC_INIT([canopen], [0.1.0], [info@rscada.se], [canopen], [http://www.rscada.se/libcanopen/])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_CONFIG_MACRO_DIR([m4])
LT_INIT
AM_PROG_LIBTOOL
LDFLAGS="$LDFLAGS -version-info 0:1:0"
dnl ----------------------
dnl
AC_PROG_CC
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile canopen/Makefile bin/Makefile libcanopen.pc])
AC_OUTPUT
echo \
"----------------------------------------------------------
Configuration:
Source location: ${srcdir}
Compile: ${CC}
Compiler flags: ${CFLAGS}
Linker flags: ${LDFLAGS}
Host system type: ${host}
Install path: ${prefix}
See config.h for further configuration.
----------------------------------------------------------"