mirror of
https://github.com/adrcs/ip400.git
synced 2025-04-21 03:03:43 +03:00
34 lines
518 B
Plaintext
34 lines
518 B
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.68])
|
|
AC_INIT([stm32flash], [0.7], [])
|
|
|
|
# Checks for programs.
|
|
AM_INIT_AUTOMAKE([foreign -Wall])
|
|
AC_PROG_CC
|
|
AM_PROG_CC_C_O
|
|
AM_PROG_AR
|
|
AM_PROG_AS
|
|
LT_INIT
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
# Checks for programs.
|
|
|
|
# Checks for libraries.
|
|
|
|
# Checks for header files.
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
# Checks for library functions.
|
|
|
|
|
|
AC_CONFIG_FILES(
|
|
[
|
|
Makefile
|
|
parsers/Makefile
|
|
])
|
|
|
|
AC_OUTPUT
|