genode/repos/dde_rump/lib/mk/rump_include.inc
Sebastian Sumpf 38abfc79f5 rump: reduce size of rump
* 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
2017-11-30 11:23:19 +01:00

21 lines
510 B
Makefile

ifeq ($(called_from_lib_mk),yes)
include $(REP_DIR)/lib/mk/rump_common.inc
$(RUMP_BASE):
mkdir -p $@
$(RUMP_BASE)/include/machine: $(RUMP_BASE)
$(VERBOSE_MK)mkdir -p $(RUMP_BASE)/include
$(VERBOSE_MK)for arch in $(INC_ARCH); do \
ln -sf $(RUMP_PORT_DIR)/src/sys/arch/$$arch/include $(RUMP_BASE)/include/$$arch ; done
$(VERBOSE_MK)touch $(RUMP_BASE)/include/pthread_types.h
$(VERBOSE_MK)ln -sf $(INC_MACHINE) $(RUMP_BASE)/include/machine
all: $(RUMP_BASE)/include/machine
endif
# vi:set ft=make :