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