|
123456789101112131415161718192021222324252627 |
- ## 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.
- ##
-
- AM_CXXFLAGS = -I@top_srcdir@/SNFUtility/Common
-
- TESTS = \
- TestFileBackup
-
- check_PROGRAMS = \
- TestFileBackup
-
- TestFileBackup_SOURCES = \
- TestFileBackup.cpp \
- @top_srcdir@/SNFUtility/Common/FileBackup.cpp
-
- clean-local:
- rm -f *.gcno *.gcov *.gcda *~
|