Magellan Linux

Contents of /mcore-src/trunk/mcore-tools/conf/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2477 - (show annotations) (download)
Thu Sep 10 08:18:17 2015 UTC (8 years, 7 months ago) by niro
File size: 475 byte(s)
-renamed sql.conf to control.conf
1 include ../Makefile.inc
2
3 FILES = mcore.conf control.conf
4
5 all: $(FILES)
6
7 install: install-client install-control all
8
9 install-client: all
10 $(INSTALL) -d $(DESTDIR)/$(SYSCONFDIR)/mcore
11 $(INSTALL) -m0644 mcore.conf $(DESTDIR)/$(SYSCONFDIR)/mcore
12
13 install-control: all
14 $(INSTALL) -d $(DESTDIR)/$(SYSCONFDIR)/mcore
15 $(INSTALL) -m0600 control.conf $(DESTDIR)/$(SYSCONFDIR)/mcore
16
17 clean:
18 rm -f $(FILES)
19
20 .PHONY: install-client
21 .PHIONY: install-control
22 .PHONY: all install clean