mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-13 08:09:41 +00:00
16 lines
250 B
Makefile
16 lines
250 B
Makefile
all:
|
|
|
|
install:
|
|
.for TREE in ${TREES}
|
|
@mkdir -p ${DESTDIR}${ROOT}
|
|
@cp -vr ${TREE} ${DESTDIR}${ROOT}
|
|
.endfor
|
|
|
|
plist:
|
|
.for TREE in ${TREES}
|
|
@(cd ${TREE}; find * -type f) | \
|
|
xargs -n1 printf "${ROOT}/${TREE}/%s\n"
|
|
.endfor
|
|
|
|
.PHONY: install plist
|