123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- ## 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 -DDEFAULT_CONFIG_DIR=\"@sysconfdir@\"
-
- sbin_PROGRAMS = \
- SNFMilterConfig
-
- SNFMilterConfig_SOURCES = \
- @top_srcdir@/SNFUtility/SNFMilterConfig/main.cpp \
- @top_srcdir@/SNFUtility/SNFMilterConfig/SNFMilterConfig.cpp \
- @top_srcdir@/SNFUtility/SNFMilterConfig/PostfixIntegrate.cpp \
- @top_srcdir@/SNFUtility/SNFMilterConfig/SendmailIntegrate.cpp
-
- noinst_HEADERS = \
- @top_srcdir@/SNFUtility/SNFMilterConfig/SNFMilterConfig.hpp \
- @top_srcdir@/SNFUtility/SNFMilterConfig/PostfixIntegrate.hpp \
- @top_srcdir@/SNFUtility/SNFMilterConfig/SendmailIntegrate.hpp
-
- EXTRA_DIST = \
- Makefile.am \
- ChangeLog
-
- install-exec-hook:
- ln -f $(DESTDIR)$(sbindir)/SNFMilterConfig$(EXEEXT) $(DESTDIR)$(sbindir)/SNFDebugMilterConfig$(EXEEXT)
-
- uninstall-hook:
- rm -f $(DESTDIR)$(sbindir)/SNFDebugMilterConfig$(EXEEXT)
-
- clean-local:
- rm -f *.gcno *.gcov *.gcda *~ $(CONFDATA)
|