1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(GUI/OscillatorGUI.h)
3
4dnl Checks for programs.
5AC_PROG_CC
6AC_PROG_CPP
7
8AC_CHECK_LIB(fltk, Fl_Group)
9
10dnl Checks for header files.
11AC_HEADER_STDC
12
13dnl Checks for typedefs, structures, and compiler characteristics.
14AC_C_CONST
15AC_C_INLINE
16
17dnl Checks for library functions.
18
19AC_OUTPUT(Makefile)
20