mirror of
https://github.com/kelvinlawson/atomthreads.git
synced 2026-01-30 19:53:14 +01:00
20 lines
473 B
Makefile
20 lines
473 B
Makefile
ATOMTHREADS_PORT = $(ATOMTHREADS)/ports/cortex_m
|
|
ATOMTHREADS_KERNEL = $(ATOMTHREADS)/kernel
|
|
|
|
INCLUDES := $(INCLUDES) \
|
|
-I$(ATOMTHREADS_KERNEL) \
|
|
-I$(ATOMTHREADS_PORT)
|
|
|
|
SRCS := $(SRCS) \
|
|
$(ATOMTHREADS_KERNEL)/atomkernel.c \
|
|
$(ATOMTHREADS_KERNEL)/atommutex.c \
|
|
$(ATOMTHREADS_KERNEL)/atomqueue.c \
|
|
$(ATOMTHREADS_KERNEL)/atomsem.c \
|
|
$(ATOMTHREADS_KERNEL)/atomtimer.c \
|
|
$(ATOMTHREADS_PORT)/atomport.c
|
|
|
|
ASMS := $(ASMS) \
|
|
$(ATOMTHREADS_PORT)/atomport_s.S
|
|
|
|
|