mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
10 lines
313 B
Makefile
10 lines
313 B
Makefile
LIBL4_DIR = $(CODEZERO_DIR)/conts/userlibs/libl4
|
|
|
|
INC_DIR += $(CODEZERO_DIR)/conts/userlibs/libc/include
|
|
|
|
SRC_C += $(notdir $(wildcard $(LIBL4_DIR)/src/arch/arm/v5/*.c))
|
|
SRC_S += $(notdir $(wildcard $(LIBL4_DIR)/src/arch/arm/v5/*.S))
|
|
|
|
vpath %.c $(LIBL4_DIR)/src/arch/arm/v5
|
|
vpath %.S $(LIBL4_DIR)/src/arch/arm/v5
|