#!/bin/sh

source $(dirname $0)/env.sh

cd $LUNA_ROOT

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