-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.ac
More file actions
38 lines (35 loc) · 1.02 KB
/
configure.ac
File metadata and controls
38 lines (35 loc) · 1.02 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
AC_PREREQ([2.69])
AC_INIT([esp32basic],[1.0.0])
AM_INIT_AUTOMAKE
: ${CFLAGS="-g -Os -Wall -nostdlib -mlongcalls"} ${LDFLAGS="-specs=nano.specs"}
AC_PROG_CC
AC_PROG_CC_STDC
AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL(AR, ar, :)])
AC_PROG_AR
AC_PROG_RANLIB
AC_ARG_WITH([binaries], AS_HELP_STRING([--without-binaries], [Do not generate .bin images (esptool.py required).]))
AM_CONDITIONAL([WITH_BINARIES], [test x$with_binaries != xno])
AM_COND_IF([WITH_BINARIES],[ AC_MSG_NOTICE([generate .bin images]) ])
AC_CONFIG_FILES([
Makefile
src/Makefile
modules/Makefile
examples/Makefile
examples/0blink/Makefile
examples/0button/Makefile
examples/0hello/Makefile
examples/0ledctrl/Makefile
examples/0timgalarm/Makefile
examples/0uart/Makefile
examples/0udma/Makefile
examples/1i2cssd1306/Makefile
examples/1rmtblink/Makefile
examples/1rmtdht/Makefile
examples/1rmtmorse/Makefile
examples/1rmtmusic/Makefile
examples/1rmttm1637/Makefile
examples/1rmtws2812/Makefile
examples/3prog1/Makefile
ld/Makefile
])
AC_OUTPUT