IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4002


Ignore:
Timestamp:
May 19, 2005, 4:00:17 PM (21 years ago)
Author:
jhoblitt
Message:

add autotest support

Location:
trunk/glueforge
Files:
6 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/glueforge/glueforge.in

    r3929 r4002  
    33# Copyright (C) 2005  Joshua Hoblitt
    44#
    5 # $Id: glueforge.in,v 1.9 2005-05-13 22:00:15 jhoblitt Exp $
     5# $Id: glueforge.in,v 1.10 2005-05-20 02:00:17 jhoblitt Exp $
    66
    77use strict;
     
    8787    'header.tt'             => "$output/src/$data{file_name}.h",
    8888    'code.tt'               => "$output/src/$data{file_name}.c",
     89    'tests_makefile_am.tt'  => "$output/tests/Makefile.am",
     90    'testsuite_at.tt'       => "$output/tests/testsuite.at",
     91    'dbsetup_c.tt'          => "$output/tests/dbsetup.c",
     92    'dbcleanup_c.tt'        => "$output/tests/dbcleanup.c",
     93    'init_c.tt'             => "$output/tests/init.c",
    8994);
    9095
  • trunk/glueforge/templates/psdb/configure_ac.tt

    r3908 r4002  
    99AM_CONFIG_HEADER([config.h])
    1010AM_MAINTAINER_MODE
     11
     12AC_CONFIG_TESTDIR([tests])
     13AC_CONFIG_FILES([tests/Makefile])
     14AM_MISSING_PROG([AUTOM4TE], [autom4te])
    1115
    1216AC_LANG(C)
     
    2125AC_SUBST([[% pkg_name %]_CFLAGS])
    2226
    23 AC_CONFIG_FILES([% pkg_name %].pc Makefile src/Makefile)
     27AC_CONFIG_FILES([
     28  Makefile
     29  src/Makefile
     30  [% pkg_name %].pc
     31])
    2432AC_OUTPUT
  • trunk/glueforge/templates/psdb/top_makefile_am.tt

    r3931 r4002  
    1 SUBDIRS = src
     1SUBDIRS = src tests
    22
    33pkgconfigdir = $(libdir)/pkgconfig
Note: See TracChangeset for help on using the changeset viewer.