- Timestamp:
- 2005-09-10T00:52:13Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3a6c8e5
- Parents:
- b02e5d1
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile
rb02e5d1 rffc277e 33 33 fb/font-8x16.c 34 34 35 # CFLAGS options same for all targets 36 CFLAGS+=-nostdinc -I../include -Werror-implicit-function-declaration -Wmissing-prototypes -Werror 37 35 38 ifdef DEBUG_SPINLOCK 36 39 CFLAGS+=-D$(DEBUG_SPINLOCK) … … 60 63 61 64 depend: 62 $(CC) $(C PPFLAGS) -M $(arch_sources) $(sources) >Makefile.depend65 $(CC) $(CFLAGS) -M $(arch_sources) $(sources) >Makefile.depend 63 66 64 67 build: kernel.bin boot -
src/build.mips
rb02e5d1 rffc277e 1 1 #! /bin/sh 2 2 3 set -e 3 if [ -z "$1" ]; then 4 echo "Usage: $0 [msim|simics|lgxemul|bgxemul|indy]" 5 exit 1 6 else 7 MACHINE=$1 8 fi 9 4 10 # Generate context_offset.h 5 11 (cd ../tools/mips/;make gencontext;./gencontext) 12 rm ../arch/mips/_link.ld 6 13 7 8 make all ARCH=mips 14 make all ARCH=mips MACHINE=$MACHINE -
src/clean.mips
rb02e5d1 rffc277e 5 5 rm ../tools/mips/gencontext 6 6 rm ../arch/mips/include/context_offset.h 7 rm ../arch/mips/_link.ld
Note:
See TracChangeset
for help on using the changeset viewer.