Magellan Linux

Contents of /mcore-src/tags/mcore-tools-1_0_5/conf/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2911 - (show annotations) (download)
Fri Sep 15 09:55:18 2023 UTC (8 months, 1 week ago) by niro
File size: 533 byte(s)
tagged 'mcore-tools-1_0_5'
1 include ../Makefile.inc
2
3 FILES = mcore.conf control.conf
4
5 all: $(FILES)
6
7 install: install-common install-client install-control all
8
9 install-common: all
10 $(INSTALL) -d $(DESTDIR)/$(SYSCONFDIR)/mcore
11 $(INSTALL) -m0644 mcore.conf $(DESTDIR)/$(SYSCONFDIR)/mcore
12
13 install-client: all
14
15 install-control: all
16 $(INSTALL) -d $(DESTDIR)/$(SYSCONFDIR)/mcore
17 $(INSTALL) -m0600 control.conf $(DESTDIR)/$(SYSCONFDIR)/mcore
18
19 clean:
20 rm -f $(FILES)
21
22 .PHONY: install-common
23 .PHONY: install-client
24 .PHONY: install-control
25 .PHONY: all install clean