diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:15:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:15:43 +0000 |
commit | 86bebf6ca095d3a90e19863515be77f6ec43f7f3 (patch) | |
tree | 667d05fbb7e3c8548a26a59680957c8b61f90b10 /examples/ca-certificates-local/Makefile | |
parent | Initial commit. (diff) | |
download | ca-certificates-upstream.tar.xz ca-certificates-upstream.zip |
Adding upstream version 20230311.upstream/20230311upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/ca-certificates-local/Makefile')
-rw-r--r-- | examples/ca-certificates-local/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/ca-certificates-local/Makefile b/examples/ca-certificates-local/Makefile new file mode 100644 index 0000000..a872252 --- /dev/null +++ b/examples/ca-certificates-local/Makefile @@ -0,0 +1,14 @@ +# +# Makefile +# + +LOCALCERTSDIR = /usr/local/share/ca-certificates + +all: + +clean: + +install: + mkdir -p $(DESTDIR)/$(LOCALCERTSDIR); \ + $(MAKE) -C local install LOCALCERTSDIR=$(DESTDIR)/$(LOCALCERTSDIR) + |