Files
BBeOS/drivers/Makefile
Eliott 7b53cde2ae
Some checks failed
CI / markdown-lint (push) Failing after 14s
Complete BBeOS project implementation with BlackBerry-inspired website
- 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
2025-08-01 10:20:28 +02:00

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