fakeroute/configure.ac

14 lines
277 B
Plaintext
Raw Normal View History

2023-06-17 09:20:27 +02:00
ss this file with autoconf to produce a configure script.
AC_INIT(src/Fakeroute.cpp)
dnl Setup for automake
AM_INIT_AUTOMAKE(fakeroute, 0.2)
dnl Check for tools
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
# Finally create all the generated files
AC_OUTPUT(Makefile src/Makefile)