#!/bin/sh

# LPCXpresso IDEにこのプロジェクトをインポートしたら、
# 最初にこのスクリプトを走らせる。このスクリプトによって、
# ASPカーネルのコンフィギュレータが実行可能になり、また、
# プロジェクトもビルド可能になる。

OBJ_TASK="task_ntshell.o ntshell_usrcmd.o task_teacher.o task_student.o"
OBJ_LIB="ntlibc.o ntopt.o ntshell.o text_editor.o text_history.o vtparse.o vtparse_table.o"

make clean
kernel/configure \
    -T "lpcxpresso1768_gcc" \
    -A "app_sample2" \
    -a "./task ./library/ntshell" \
    -U "$OBJ_TASK $OBJ_LIB" \
    -g "../cfg/cfg/cfg"

make depend
