* configure.in: added missing mcs51 in status output
[fw/sdcc] / device / lib / pic / configure.in
1 #
2 # configure.in - input script to autoconf to
3 #                configure directory
4 #
5 # This file is part of the GNU PIC Library.
6 #
7 # Originally written by
8 #       Vangelis Rokas <vrokas@otenet.gr>
9 #
10 # Adopted for the SDCC/pic14 library by
11 #       Raphael Neider <rneider AT web.de>
12 #
13 # $Id$
14 #
15
16 # Process this file with autoconf to produce a configure script.
17 AC_PREREQ(2.60)
18 AC_INIT
19
20 AC_DEFUN(AC_CONFIG_SRCDIR)
21 #AC_DEFUN(AC_CONFIG_FILES)
22
23 # Checks for programs.
24 AC_CHECK_PROG(GPASM,    gpasm,  gpasm, :)
25 AC_CHECK_PROG(GPLINK,   gplink, gplink, :)
26 AC_CHECK_PROG(GPLIB,    gplib,  gplib, :)
27
28 AC_CHECK_PROG(RM,       rm,     [rm -f], :)
29 AC_CHECK_PROG(CP,       cp,     cp, :)
30 AC_CHECK_PROG(MV,       mv,     mv, :)
31 AC_CHECK_PROG(LS,       ls,     ls, :)
32 AC_CHECK_PROG(SED,      sed,    sed, :)
33 AC_PROG_EGREP
34 AC_CHECK_PROG(MKDIR,    mkdir,  [mkdir -p], :)
35 AC_CHECK_PROG(RMDIR,    rmdir,  rmdir, :)
36
37 AC_PROG_MAKE_SET
38
39 # Checks for libraries.
40
41 # Checks for header files.
42
43 # Checks for typedefs, structures, and compiler characteristics.
44
45 # Checks for library functions.
46
47 AC_CONFIG_FILES([Makefile
48                  Makefile.common
49                  libdev/Makefile
50                  libsdcc/Makefile
51                  libm/Makefile])
52 AC_OUTPUT