add config.ac Make.am

This commit is contained in:
kevinnls
2021-06-26 21:28:32 +05:30
parent c213d434ec
commit c0fb1626c7
2 changed files with 14 additions and 0 deletions

2
Makefile.am Normal file
View File

@@ -0,0 +1,2 @@
bin_PROGRAMS = stdouterr
stdouterr_SOURCES = main.c tmp_help.h

12
configure.ac Normal file
View File

@@ -0,0 +1,12 @@
dnl Proccess this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT([stdouterr], [0.1], [kevin.nl.samuel@gmail.com])
AM_INIT_AUTOMAKE([1.9 foreign])
AC_PROG_CC
AC_CONFIG_FILES([Makefile])
AC_OUTPUT