Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2473 - (show annotations) (download)
Tue Sep 8 09:04:58 2015 UTC (8 years, 9 months ago) by niro
File size: 467 byte(s)
-added sql.conf and split client/controll installation
1 include ../Makefile.inc
2
3 FILES = mcore.conf sql.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 sql.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