mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 12:16:31 +00:00
创建了screen manager文件
This commit is contained in:
12
kernel/lib/Makefile
Normal file
12
kernel/lib/Makefile
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
CFLAGS += -I .
|
||||
|
||||
kernel_lib_subdirs:= libUI
|
||||
|
||||
ECHO:
|
||||
@echo "$@"
|
||||
|
||||
$(kernel_lib_subdirs): ECHO
|
||||
$(MAKE) -C $@ all CFLAGS="$(CFLAGS)" ASFLAGS="$(ASFLAGS)" PIC="$(PIC)"
|
||||
|
||||
all: $(kernel_lib_subdirs)
|
7
kernel/lib/libUI/Makefile
Normal file
7
kernel/lib/libUI/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
all: screen_manager.o
|
||||
|
||||
CFLAGS += -I .
|
||||
|
||||
screen_manager.o: screen_manager.c
|
||||
gcc $(CFLAGS) -c screen_manager.c -o screen_manager.o
|
1
kernel/lib/libUI/screen_manager.c
Normal file
1
kernel/lib/libUI/screen_manager.c
Normal file
@ -0,0 +1 @@
|
||||
#include "screen_manager.h"
|
1
kernel/lib/libUI/screen_manager.h
Normal file
1
kernel/lib/libUI/screen_manager.h
Normal file
@ -0,0 +1 @@
|
||||
#pragma once
|
Reference in New Issue
Block a user