OpenCores
URL https://opencores.org/ocsvn/c0or1k/c0or1k/trunk

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [clean.py] - Rev 5

Compare with Previous | Blame | View Log

#! /usr/bin/env python2.6
# -*- mode: python; coding: utf-8; -*-
#
# Top-level clean script for Codezero
#
# Cleans the Codezero environment
#
import os, sys, shelve, shutil
 
# clean the kernel
print "\n### Cleaning the kernel..."
os.system("scons -c")
 
# clean user libraries
print "\n### Cleaning user libs"
os.system("scons -f SConstruct.userlibs -c")
 
# clean the loader (the packer around kernel.elf)
print "\n### Cleaning loader..."
os.system("scons -f SConstruct.loader -c")
 
# rem build dir
print "\n### Removing build dir..."
if os.path.exists("build"):
    shutil.rmtree("build")
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.