You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.am 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ## Process this file with automake to produce Makefile.in
  2. ##
  3. ## $Id$
  4. ##
  5. ## automake input for the MicroNeil SNFServer config files.
  6. ##
  7. ## Author: Alban Deniz
  8. ##
  9. ## Copyright (C) 2008 ARM Research Labs, LLC.
  10. ## See www.armresearch.com for the copyright terms.
  11. ##
  12. ##
  13. CONFDATA = \
  14. SNFServer.xml.sample \
  15. identity.xml.sample
  16. if OpenBSD
  17. if ForPackage
  18. sampleconfdir = @datadir@/examples/@PACKAGE_NAME@
  19. sampleconf_DATA = $(CONFDATA)
  20. else
  21. sampleconfdir = @sysconfdir@/@PACKAGE_NAME@
  22. sampleconf_DATA = $(CONFDATA)
  23. endif
  24. else
  25. sampleconfdir = @sysconfdir@/@PACKAGE_NAME@
  26. sampleconf_DATA = $(CONFDATA)
  27. endif
  28. SNFServer.xml.sample: SNFServer.xml.sample.in Makefile
  29. cat @top_srcdir@/config_files/SNFServer.xml.sample.in | sed -e s+SYSCONFDIR+@sysconfdir@+ -e s+PREFIX+@prefix@+ -e s+PACKAGE_NAME+@PACKAGE_NAME@+ > $@
  30. identity.xml.sample: identity.xml.sample.in
  31. cp @top_srcdir@/config_files/identity.xml.sample.in $@
  32. pkgdata_DATA = \
  33. GBUdbIgnoreList.txt.sample \
  34. testmode.snf
  35. EXTRA_DIST = \
  36. SNFServer.xml.sample.in \
  37. identity.xml.sample.in \
  38. GBUdbIgnoreList.txt.sample \
  39. testmode.snf \
  40. Makefile.am
  41. clean-local:
  42. rm -f *.gcno *.gcov *.gcda *~ $(CONFDATA)