beginnings of automake files

This commit is contained in:
Zach Tibbitts 2007-06-12 17:44:05 +00:00
parent fab729a5c6
commit caa0f1427a
3 changed files with 12 additions and 0 deletions

2
Makefile.am Normal file
View File

@ -0,0 +1,2 @@
SUBDIRS = src
dist_doc_DATA = README

9
configure.ac Normal file
View File

@ -0,0 +1,9 @@
AC_INIT([deluge], [0.5.2], [zach@collegegeek.org])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
src/Makefile
])
AC_OUTPUT

1
src/Makefile.am Normal file
View File

@ -0,0 +1 @@