mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
38abfc79f5
* integrate rump's contrib code into Genode's build system and build what is required by Genode, only * checkout needed NetBSD sources directly from CVS fixes #2589
21 lines
502 B
Makefile
21 lines
502 B
Makefile
LICENSE := BSD
|
|
VERSION := cvs
|
|
DOWNLOADS := rump.cvs
|
|
|
|
$(call check_tool, cvs)
|
|
|
|
URL(rump) := :pserver:anoncvs@anoncvs.netbsd.org:2401/cvsroot
|
|
REV(rump) := "20141216 2100UTC"
|
|
DIR(rump) := src/lib/dde_rump
|
|
HASH_INPUT += $(REP_DIR)/rump.list
|
|
|
|
PATCHES := $(shell find $(REP_DIR)/patches/*.patch)
|
|
PATCH_OPT := -N -d ${DIR(rump)} -p1
|
|
|
|
%.cvs:
|
|
@echo "CVS checkout rump ..."
|
|
$(VERBOSE)cat $(REP_DIR)/rump.list | xargs cvs -d $(URL($*)) -Q -z3 export \
|
|
-D $(REV($*)) -d $(DIR($*))
|
|
|
|
# vi: set ft=make :
|