aboutsummaryrefslogtreecommitdiff
path: root/libraries/mbed/rtos/Makefile
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2017-04-29 15:30:34 -0400
committerPaul Selkirk <paul@psgd.org>2017-04-29 15:30:34 -0400
commit30c4302af8fe5c67fc337f5ee1d44bb5ed2569c7 (patch)
tree4b363e3cb751220175c1b9f4d3ea814d0d2d425b /libraries/mbed/rtos/Makefile
parentbf394f25dacac8e3e3add80ea326312cdd97ed00 (diff)
Remove rtos source files.
Diffstat (limited to 'libraries/mbed/rtos/Makefile')
-rw-r--r--libraries/mbed/rtos/Makefile40
1 files changed, 0 insertions, 40 deletions
diff --git a/libraries/mbed/rtos/Makefile b/libraries/mbed/rtos/Makefile
deleted file mode 100644
index 496791c..0000000
--- a/libraries/mbed/rtos/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-CC=arm-none-eabi-gcc
-AR=arm-none-eabi-ar
-
-###########################################
-
-vpath %.c rtx/TARGET_CORTEX_M
-vpath %.S rtx/TARGET_CORTEX_M/TARGET_RTOS_M4_M7/TOOLCHAIN_GCC
-
-SRCS = rtos/rtos_idle.c \
- HAL_CM.c \
- rt_CMSIS.c \
- rt_Event.c \
- rt_List.c \
- rt_Mailbox.c \
- rt_MemBox.c \
- rt_Mutex.c \
- rt_Robin.c \
- rt_Semaphore.c \
- rt_System.c \
- rt_Task.c \
- rt_Time.c \
- RTX_Conf_CM.c \
- HAL_CM4.S \
- SVC_Table.S
-
-OBJS = $(patsubst %.S,%.o, $(patsubst %.c,%.o, $(SRCS)))
-
-all: librtos.a
-
-%.o : %.c
- $(CC) $(CFLAGS) -c -o $@ $<
-
-%.o : %.S
- $(CC) $(CFLAGS) -c -o $@ $<
-
-librtos.a: $(OBJS)
- $(AR) -r $@ $(OBJS)
-
-clean:
- rm -f $(OBJS) librtos.a