transplant development board of gd32vf103_rvstar

This commit is contained in:
Wang_Weigen
2021-12-02 15:17:59 +08:00
parent 4fc79c211a
commit 607b8ca017
49 changed files with 11946 additions and 3 deletions

View File

@@ -1,4 +1,14 @@
SRC_FILES := pthread.c semaphore.c pthread_mutex.c mqueue.c
SRC_FILES := pthread.c
ifeq ($(CONFIG_KERNEL_SEMAPHORE),y)
SRC_FILES += semaphore.c
endif
ifeq ($(CONFIG_KERNEL_MUTEX),y)
SRC_FILES += pthread_mutex.c
endif
ifeq ($(CONFIG_KERNEL_MESSAGEQUEUE),y)
SRC_FILES += mqueue.c
endif
include $(KERNEL_ROOT)/compiler.mk