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