mirror of
https://github.com/kelvinlawson/atomthreads.git
synced 2026-02-18 21:03:14 +01:00
18 lines
468 B
Makefile
18 lines
468 B
Makefile
ATOMTHREADS_PORT = $(ATOMTHREADS)/ports/arm
|
|
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-asm.s
|