mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
20 lines
343 B
Makefile
20 lines
343 B
Makefile
MIRROR_FROM_REP_DIR := lib/symbols/libssh
|
|
|
|
content: $(MIRROR_FROM_REP_DIR)
|
|
|
|
$(MIRROR_FROM_REP_DIR):
|
|
$(mirror_from_rep_dir)
|
|
|
|
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/libssh)
|
|
|
|
content: include/libssh
|
|
|
|
include/libssh:
|
|
mkdir -p $@
|
|
cp -r $(PORT_DIR)/include/libssh/* $@/
|
|
|
|
content: LICENSE
|
|
|
|
LICENSE:
|
|
cp $(PORT_DIR)/src/lib/libssh/COPYING $@
|