1# $Id: Makefile.am,v 2.5 2007/07/30 00:25:53 mrsam Exp $
2#
3# Copyright 1998 - 2007 Double Precision, Inc.  See COPYING for
4# distribution information.
5
6noinst_LIBRARIES=libafx.a
7noinst_PROGRAMS=testafxpipe
8
9AFXSRC=afxpipe.C
10AFXINCLUDE=afx.h
11
12libafx_a_SOURCES=$(AFXSRC) $(AFXINCLUDE)
13
14testafxpipe_SOURCES=testafxpipe.C
15testafxpipe_DEPENDENCIES=libafx.a
16testafxpipe_LDADD=libafx.a
17
18check-am:
19	./testafxpipe <libafx.a | cmp - libafx.a
20	./testafxpipe <config.h | cmp - config.h
21
22