12345678910111213141516171819202122232425262728 |
- ## Process this file with automake to produce Makefile.in
- ##
- ## $Id: Makefile.am,v 1.2 2007/05/29 19:06:09 adeniz Exp $
- ##
- ## automake input for the MicroNeil SNFUtility/Common tests.
- ##
- ## Author: Alban Deniz
- ##
- ##
- ## Copyright (C) 2012 ARM Research Labs, LLC.
- ## See www.armresearch.com for the copyright terms.
- ##
-
- CXXFLAGS = $(SNF_CXXFLAGS) -I@top_srcdir@/SNFUtility/Common -I@top_srcdir@/SNFUtility/SNFMilterConfig
-
- TESTS = \
- TestPostfixMilterConf
-
- check_PROGRAMS = \
- TestPostfixMilterConf
-
- TestPostfixMilterConf_SOURCES = \
- TestPostfixMilterConf.cpp \
- @top_srcdir@/SNFUtility/SNFMilterConfig/PostfixMilterConf.cpp \
- @top_srcdir@/SNFUtility/Common/Utility.cpp
-
- clean-local:
- rm -f *.gcno *.gcov *.gcda *~
|