Initial commit

Version 2.0
This commit is contained in:
Brian Hrebec 2012-02-08 21:08:59 -08:00
commit ccc1b24d41
12 changed files with 1304 additions and 0 deletions

15
configure.ac Normal file
View file

@ -0,0 +1,15 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(joy2script.c)
AM_INIT_AUTOMAKE(joy2script, 0.0.1)
AM_CONFIG_HEADER(config.h)
AC_PROG_MAKE_SET
dnl Checks for programs.
AC_PROG_CC
AC_ISC_POSIX
dnl Checks for header files.
AC_STDC_HEADERS
dnl Check for site-specific configuration
AC_OUTPUT(Makefile)