mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
17 lines
253 B
Python
17 lines
253 B
Python
# -*- mode: python; coding: utf-8; -*-
|
|
#
|
|
# Codezero -- a microkernel for embedded systems.
|
|
#
|
|
# Copyright © 2009 B Labs Ltd
|
|
|
|
import os, sys, shelve
|
|
from os.path import join
|
|
|
|
Import('env')
|
|
|
|
src = Glob('*.[cS]')
|
|
|
|
objs = env.Object(src)
|
|
|
|
Return('objs')
|