Some checks failed
CI / markdown-lint (push) Failing after 14s
- Updated .gitignore with comprehensive exclusions for build artifacts, IDE files, and OS-specific files - Created BlackBerry-inspired website with Heroicons and Gitea integration - Added complete project structure with all 7 phases implemented - Included kernel drivers, UI components, telephony stack, and packaging tools - Added emulation scripts for testing and development - Comprehensive documentation for all development phases - Security analysis and hardware testing guides - SDK and application framework for third-party development
19 lines
369 B
Makefile
19 lines
369 B
Makefile
# BBeOS Q20 Driver Makefile
|
|
# Builds Q20-specific drivers for BlackBerry Classic
|
|
|
|
obj-m += display/q20-panel.o
|
|
obj-m += input/q20-keyboard.o
|
|
|
|
# Build targets
|
|
all: modules
|
|
|
|
modules:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(PWD) modules
|
|
|
|
clean:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(PWD) clean
|
|
|
|
install:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(PWD) modules_install
|
|
|
|
.PHONY: all modules clean install |