|
123456789101112131415161718192021222324252627 |
- ## Process this file with automake to produce Makefile.in
- ##
- ## $Id$
- ##
- ## automake input for the MicroNeil SNFServer application (SNFServer directory).
- ##
- ## Author: Alban Deniz
- ##
- ## Copyright (C) 2008 ARM Research Labs, LLC.
- ## See www.armresearch.com for the copyright terms.
- ##
- ##
-
- LIBS = @SNF_LIBS@ -L../SNFMulti -L../CodeDweller -lSNFMulti -lCodeDweller @LIBS@
- CXXFLAGS = $(SNF_CXXFLAGS) -I@top_srcdir@/SNFMulti -I@top_srcdir@/CodeDweller
-
- sbin_PROGRAMS = \
- SNFServer
-
- SNFServer_SOURCES = \
- @top_srcdir@/SNFServer/main.cpp
-
- EXTRA_DIST = \
- Makefile.am
-
- clean-local:
- rm -f *.gcno *.gcov *.gcda *~ $(CONFDATA)
|