Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2473 - (hide 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 niro 2216 include ../Makefile.inc
2    
3 niro 2473 FILES = mcore.conf sql.conf
4 niro 2216
5     all: $(FILES)
6    
7 niro 2473 install: install-client install-control all
8    
9     install-client: all
10 niro 2216 $(INSTALL) -d $(DESTDIR)/$(SYSCONFDIR)/mcore
11     $(INSTALL) -m0644 mcore.conf $(DESTDIR)/$(SYSCONFDIR)/mcore
12    
13 niro 2473 install-control: all
14     $(INSTALL) -d $(DESTDIR)/$(SYSCONFDIR)/mcore
15     $(INSTALL) -m0600 sql.conf $(DESTDIR)/$(SYSCONFDIR)/mcore
16    
17 niro 2216 clean:
18     rm -f $(FILES)
19    
20 niro 2473 .PHONY: install-client
21     .PHIONY: install-control
22 niro 2216 .PHONY: all install clean