mirror of
https://github.com/pruten/shoebill.git
synced 2024-11-15 17:08:36 +00:00
9f0e6ed115
- Converted condition-code + physical_get/set switch statements to jump tables - Moved the pmmu_cache lookup code out of translate_logical_addr - Broke MOVE into move-to-datareg, -from-datareg, and datareg-to-datareg - Fixed UFS code to ignore high 32 bits of inode size (it sometimes contains garbage) - Support for zero-length reads in scsi.c + 256kb read/write buffer - pushing interrupt stack frames now actually changes the priority mask - Updated the READMEs, screencaps for 0.0.2
14 lines
188 B
Makefile
14 lines
188 B
Makefile
|
|
all: shoebill
|
|
|
|
shoebill: make_gui
|
|
|
|
make_gui: make_core
|
|
xcodebuild -project gui/Shoebill.xcodeproj SYMROOT=build
|
|
|
|
make_core:
|
|
$(MAKE) -C core -j 4
|
|
|
|
clean:
|
|
rm -rf intermediates gui/build
|