mirror of
https://git.launchpad.net/ubuntu/+source/ca-certificates
synced 2025-04-13 09:38:26 +00:00
12 lines
108 B
Makefile
12 lines
108 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
install:
|
|
for p in *.crt; do \
|
|
install -m 644 $$p $(CERTSDIR)/$$p ; \
|
|
done
|