blob: bceea06d18b3154cb9ccee1826b90d0bd02fb350 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- make -*-
# (C) 2015 by Eugeniy Mikhailov, <evgmik@gmail.com>
# make all destination dirs
pruned_destination_dirs = $(sort $(destination_dirs))
$(pruned_destination_dirs):
$(INSTALL) -d -m 0755 '$@'
|