Luna/tools/sources.sh

13 lines
238 B
Bash
Raw Normal View History

#!/bin/sh
source $(dirname $0)/env.sh
cd $LUNA_ROOT
2023-08-03 10:19:45 +00:00
FOLDERS=(kernel libc libos libui libluna apps shell tests)
SOURCES=($(find ${FOLDERS[@]} -type f -name "*.cpp"))
SOURCES+=($(find ${FOLDERS[@]} -type f -name "*.h"))
export SOURCES