Some checks failed
CI / markdown-lint (push) Failing after 14s
- Reorganized directory structure following open source best practices - Created src/ directory for all source code components - Moved build artifacts to build/ subdirectories - Organized documentation into phases/, guides/, and api/ subdirectories - Moved third-party code to vendor/ directory - Moved downloads to downloads/ directory - Updated all build scripts to reference new directory structure - Created comprehensive PROJECT_STRUCTURE.md documentation - Added DEVELOPMENT_GUIDE.md as main entry point - Improved separation of concerns and maintainability - Follows standard open source project conventions
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 |