13 lines
244 B
Bash
Executable File
13 lines
244 B
Bash
Executable File
#!/bin/sh
|
|
|
|
source $(dirname $0)/env.sh
|
|
|
|
cd $LUNA_ROOT
|
|
|
|
FOLDERS=(kernel libc libos gui libluna utils shell tests system)
|
|
|
|
SOURCES=($(find ${FOLDERS[@]} -type f -name "*.cpp"))
|
|
SOURCES+=($(find ${FOLDERS[@]} -type f -name "*.h"))
|
|
|
|
export SOURCES
|