mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
# -*- mode: python; coding: utf-8; -*-
|
|
#
|
|
# Codezero -- Virtualization microkernel for embedded systems.
|
|
#
|
|
# Copyright © 2009 B Labs Ltd
|
|
|
|
import os, sys, shelve
|
|
from os.path import join
|
|
|
|
# Get global paths
|
|
PROJRELROOT = '../../../'
|
|
|
|
sys.path.append(PROJRELROOT)
|
|
|
|
from config.configuration import *
|
|
from config.projpaths import *
|
|
|
|
Import('env', 'arch', 'platform', 'type')
|
|
variant = type
|
|
|
|
# Path for uart files
|
|
LIBDEV_UART_PATH = join(PROJROOT, 'conts/libdev/uart')
|
|
|
|
# Path for timer files
|
|
LIBDEV_TIEMR_PATH = join(PROJROOT, 'conts/libdev/timer/sp804')
|
|
|
|
# Path for clcd files
|
|
LIBDEV_CLCD_PATH = join(PROJROOT, 'conts/libdev/clcd/pl110')
|
|
|
|
e = env.Clone()
|
|
e.Append(CPPPATH = [LIBDEV_UART_PATH + '/include', LIBDEV_TIEMR_PATH + '/include',
|
|
LIBDEV_CLCD_PATH + '/include',],
|
|
CCFLAGS = ['-nostdinc', '-DVARIANT_' + variant.upper(),
|
|
'-DPLATFORM_' + platform.upper()])
|
|
|
|
source = Glob('uart/src' + '/*.c') + \
|
|
Glob('timer/sp804/src' + '/*.c') + \
|
|
Glob('clcd/pl110/src' + '/*.c')
|
|
|
|
objects = e.StaticObject(source)
|
|
library = e.StaticLibrary('libdev-' + variant, objects)
|
|
|
|
Return('library')
|