mirror of
https://git.launchpad.net/ubuntu/+source/ca-certificates
synced 2025-11-01 09:09:27 +00:00
14 lines
199 B
Makefile
14 lines
199 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
|
|
LOCALCERTSDIR = /usr/local/share/ca-certificates
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)/$(LOCALCERTSDIR); \
|
|
$(MAKE) -C local install LOCALCERTSDIR=$(DESTDIR)/$(LOCALCERTSDIR)
|
|
|