2023-04-23 08:53:34 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
source $(dirname $0)/env.sh
|
|
|
|
|
|
|
|
cd $LUNA_ROOT
|
|
|
|
|
2024-12-23 21:56:56 +00:00
|
|
|
FOLDERS=(kernel libc libos gui libluna utils shell tests system)
|
2023-04-23 08:53:34 +00:00
|
|
|
|
|
|
|
SOURCES=($(find ${FOLDERS[@]} -type f -name "*.cpp"))
|
|
|
|
SOURCES+=($(find ${FOLDERS[@]} -type f -name "*.h"))
|
|
|
|
|
|
|
|
export SOURCES
|