|
12345678910111213141516171819202122232425262728293031323334353637383940 |
-
-
-
-
-
-
-
-
-
-
-
-
-
- CONFDATA = \
- SNF4CGP.xml.sample \
- identity.xml.sample
-
- sampleconfdir = @sysconfdir@/@PACKAGE_NAME@
- sampleconf_DATA = $(CONFDATA)
-
- SNF4CGP.xml.sample: SNF4CGP.xml.sample.in Makefile
- cat @top_srcdir@/config_files/SNF4CGP.xml.sample.in | sed -e s+SYSCONFDIR+@sysconfdir@+ -e s+PREFIX+@prefix@+ -e s+PACKAGE_NAME+@PACKAGE_NAME@+ > $@
-
- identity.xml.sample: identity.xml.sample.in
- cp @top_srcdir@/config_files/identity.xml.sample.in $@
-
- pkgdata_DATA = \
- GBUdbIgnoreList.txt.sample
-
- EXTRA_DIST = \
- SNF4CGP.xml.sample.in \
- identity.xml.sample.in \
- GBUdbIgnoreList.txt.sample \
- Makefile.am
-
- CLEANFILES = \
- $(CONFDATA)
-
- clean-local:
- rm -f *.gcno *.gcov *.gcda *~
|