|
12345678910111213141516171819202122232425262728293031323334 |
- ## Process this file with automake to produce Makefile.in
- ##
- ## $Id$
- ##
- ## automake input for the MicroNeil SNFMilter application (SNFMilter directory).
- ##
- ## Author: Alban Deniz
- ##
- ## Copyright (C) 2009 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 = \
- SNFMilter
-
- SNFMilter_SOURCES = \
- @top_srcdir@/SNFMilter/main.cpp \
- @top_srcdir@/SNFMilter/SNFMilter.cpp \
- @top_srcdir@/SNFMilter/MailHeaders.cpp
-
- noinst_HEADERS = \
- @top_srcdir@/SNFMilter/MailHeaders.hpp \
- @top_srcdir@/SNFMilter/ProductionQueue.hpp \
- @top_srcdir@/SNFMilter/SNFMilter.hpp
-
- EXTRA_DIST = \
- Makefile.am
-
- clean-local:
- rm -f *.gcno *.gcov *.gcda *~ $(CONFDATA)
|