Magellan Linux

Contents of /mcore-src/tags/mcore-tools-1_0_5/certs/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: 508 byte(s)
tagged 'mcore-tools-1_0_5'
1 include ../Makefile.inc
2
3 FILES = mcored.key mcored.pem
4
5 all: $(FILES)
6
7 install: install-common install-client install-control all
8
9 install-common: all
10 $(INSTALL) -d $(DESTDIR)/$(SSLDIR)/certs
11 $(INSTALL) -m0700 -d $(DESTDIR)/$(SSLDIR)/private
12 $(INSTALL) -m0644 mcored.pem $(DESTDIR)/$(SSLDIR)/certs
13 $(INSTALL) -m0400 mcored.key $(DESTDIR)/$(SSLDIR)/private
14
15 install-client: all
16
17 install-control: all
18
19 clean:
20
21 .PHONY: install-common
22 .PHONY: install-client
23 .PHONY: install-control
24 .PHONY: all install clean