Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2217 - (show annotations) (download)
Fri Jan 10 23:28:19 2014 UTC (10 years, 3 months ago) by niro
File size: 328 byte(s)
-added Makefile
1 include ../Makefile.inc
2
3 FILES = mcored.key mcored.pem
4
5 all: $(FILES)
6
7 install: all
8 $(INSTALL) -d $(DESTDIR)/$(SSLDIR)/certs
9 $(INSTALL) -m0700 -d $(DESTDIR)/$(SSLDIR)/private
10 $(INSTALL) -m0644 mcored.pem $(DESTDIR)/$(SSLDIR)/certs
11 $(INSTALL) -m0400 mcored.key $(DESTDIR)/$(SSLDIR)/private
12
13 clean:
14
15 .PHONY: all install clean