/gtk/prep-images

To get this branch, use:
bzr branch http://bzr.ed.am/gtk/prep-images
1 by edam
- initial commit, includes project and build setup
1
# configure.ac -- process this file with autoconf to produce a configure script
2
10 by Tim Marston
added command line support
3
AC_INIT([prep-images], [m4_esyscmd_s(cat version)],
4
	[tim@ed.am], ,[http://ed.am/dev/gtk/prep-images])
1 by edam
- initial commit, includes project and build setup
5
AC_CONFIG_MACRO_DIR([m4])
6
AC_CONFIG_AUX_DIR([build-aux])
5 by Tim Marston
renamed project and set new project website
7
AM_INIT_AUTOMAKE([foreign dist-xz])
1 by edam
- initial commit, includes project and build setup
8
9
# checks for programs.
10
AM_PATH_PYTHON([2.6])
11
12
# checks for libraries.
13
14
# checks for header files.
15
16
# checks for typedefs, structures, and compiler characteristics.
17
18
# checks for library functions.
19
3 by edam
- renamed project from add-copyright-to-images to prep-images
20
AC_CONFIG_FILES([src/prep-images], [chmod +x src/prep-images])
21
AC_OUTPUT([Makefile src/Makefile])