root/trunk/templates/configure.in @ 1

Revision 1, 1.1 KB (checked in by bradley, 5 years ago)

Initial import

Line 
1[% DEFAULT APP_NAME='mySpiffyApp' -%]
2[% DEFAULT EMAIL='bradley@kitefamily.co.uk' -%]
3AC_INIT([[% APP_NAME %]], [0.0.1], [[% EMAIL %]])
4
5AM_INIT_AUTOMAKE
6
7AC_PREFIX_DEFAULT([/data])
8
9app_name="[% APP_NAME %]"
10
11AC_SUBST([VERSION])
12AC_SUBST([prefix])
13AC_SUBST([app_name])
14
15AC_CONFIG_FILES([Makefile \
16                 DB/Makefile \
17                 DB/Table/Makefile \
18                 DB/Table/Row/Makefile \
19                 Apache/Makefile \
20                 Apache/Request/Makefile \
21                 Apache/Request/Controller/Makefile \
22                 html/Makefile \
23                 html/js/Makefile \
24                 templates/Makefile \
25[% FOREACH tableName = TABLES -%]
26                 DB/Table/[% tableName %]/Makefile \
27                 DB/Table/Row/[% tableName %]/Makefile \
28                 Apache/Request/Controller/[% tableName %]/Makefile \
29                 templates/[% tableName %]/Makefile \
30[% END -%]
31                 [% APP_NAME %].cfg \
32                 [% APP_NAME %].spec \
33                 [% APP_NAME %].apache.conf \
34                 [% APP_NAME %].pl ])
35
36AC_OUTPUT
37
Note: See TracBrowser for help on using the browser.