ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/trunk/Makefile.am
Revision: 5052
Committed: Mon Dec 22 11:56:03 2014 UTC (11 years, 7 months ago) by michael
File size: 681 byte(s)
Log Message:
- Initial import of bopm 3.1.3

File Contents

# Content
1 AUTOMAKE_OPTIONS = foreign
2
3 SUBDIRS = src
4
5 data_DATA = bopm.conf.sample bopm.conf.blitzed
6
7 EXTRA_DIST = ChangeLog contrib INSTALL README bopm.conf.sample bopm.conf.blitzed network-bopm
8
9 install-data-local:
10 @if test -f $(sysconfdir)/bopm.conf ; then \
11 echo "$@ will not overwrite existing $(sysconfdir)/bopm.conf"; \
12 else \
13 $(mkinstalldirs) $(sysconfdir); \
14 echo "$(INSTALL_DATA) bopm.conf.sample $(sysconfdir)/bopm.conf"; \
15 $(INSTALL_DATA) bopm.conf.sample $(sysconfdir)/bopm.conf; \
16 fi
17 $(mkinstalldirs) $(localstatedir)
18
19 uninstall-local:
20 @if test -f $(sysconfdir)/bopm.conf ; then \
21 echo "rm -f $(sysconfdir)/bopm.conf"; \
22 $(RM) -f $(sysconfdir)/bopm.conf; \
23 fi