added utils

This commit is contained in:
adrcs 2025-01-29 11:17:14 -07:00 committed by GitHub
parent a9a3f739b4
commit a9b13d2c39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
85 changed files with 9213 additions and 0 deletions

View file

@ -0,0 +1,33 @@
# -*- 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