1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ## Process this file with automake to produce Makefile.in
- ##
- ## $Id$
- ##
- ## automake input for the MicroNeil SNFMilter application (SNFMilter directory).
- ##
- ## Author: Alban Deniz
- ##
- ## Copyright (C) 2011 ARM Research Labs, LLC.
- ## See www.armresearch.com for the copyright terms.
- ##
- ##
-
- LIBS = @SNF_LIBS@ -L../../SNFMulti -L../../CodeDweller -L../Common -lUtilityCommon \
- -lSNFMulti -lCodeDweller @LIBS@
-
- CXXFLAGS = $(SNF_CXXFLAGS) -I@top_srcdir@/SNFMulti -I@top_srcdir@/CodeDweller \
- -I@top_srcdir@/SNFUtility/Common
-
- sbin_PROGRAMS = \
- SNFIdentity
-
- SNFIdentity_SOURCES = \
- @top_srcdir@/SNFUtility/SNFIdentity/main.cpp \
- @top_srcdir@/SNFUtility/SNFIdentity/SNFIdentityConfig.cpp
-
- noinst_HEADERS = \
- @top_srcdir@/SNFUtility/SNFIdentity/SNFIdentityConfig.hpp
-
- EXTRA_DIST = \
- Makefile.am \
- ChangeLog
-
- install-exec-hook:
- ln -f $(DESTDIR)$(sbindir)/SNFIdentity$(EXEEXT) $(DESTDIR)$(sbindir)/SNFDebugIdentity$(EXEEXT)
-
- uninstall-hook:
- rm -f $(DESTDIR)$(sbindir)/SNFDebugIdentity$(EXEEXT)
-
- clean-local:
- rm -f *.gcno *.gcov *.gcda *~ $(CONFDATA)
|