@@@ fltfmt mess
[mLib] / test / example / Makefile.am
CommitLineData
c4ccbbf9
MW
1### -*-makefile-*-
2###
3### Build file for test vector example
4###
5### (c) 2024 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the mLib utilities library.
11###
12### mLib is free software: you can redistribute it and/or modify it under
13### the terms of the GNU Library General Public License as published by
14### the Free Software Foundation; either version 2 of the License, or (at
15### your option) any later version.
16###
17### mLib is distributed in the hope that it will be useful, but WITHOUT
18### ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19### FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
20### License for more details.
21###
22### You should have received a copy of the GNU Library General Public
23### License along with mLib. If not, write to the Free Software
24### Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
25### USA.
26
27include $(top_srcdir)/vars.am
28
29noinst_PROGRAMS =
30
31###--------------------------------------------------------------------------
32### The test vector framework example.
33
34noinst_PROGRAMS += testex
35testex_SOURCES =
36
37testex_SOURCES += testex.c
38testex_SOURCES += exfunc.c
39testex_SOURCES += example.h
40
b1a20bee
MW
41noinst_PROGRAMS += adhoc
42adhoc_SOURCES =
43
44adhoc_SOURCES += adhoc.c
45
c4ccbbf9 46###----- That's all, folks --------------------------------------------------