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