Skip to content

Commit ac8604e

Browse files
authored
Merge pull request #543 from tock/libtock-sync-syscalls-make
libtock-sync: make: add syscalls folders
2 parents b8e46b4 + 9cdf9ea commit ac8604e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

libtock-sync/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,20 @@ $(LIBNAME)_SRCS := $(wildcard $($(LIBNAME)_DIR)/*.c)
1212
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/crypto/*.c)
1313
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/crypto/syscalls/*.c)
1414
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/display/*.c)
15+
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/display/syscalls/*.c)
1516
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/interface/*.c)
17+
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/interface/syscalls/*.c)
1618
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/kernel/*.c)
19+
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/kernel/syscalls/*.c)
1720
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/net/*.c)
21+
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/net/syscalls/*.c)
1822
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/peripherals/*.c)
23+
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/peripherals/syscalls/*.c)
1924
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/sensors/*.c)
2025
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/sensors/syscalls/*.c)
2126
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/services/*.c)
27+
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/services/syscalls/*.c)
2228
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/storage/*.c)
29+
$(LIBNAME)_SRCS += $(wildcard $($(LIBNAME)_DIR)/storage/syscalls/*.c)
2330

2431
include $(TOCK_USERLAND_BASE_DIR)/TockLibrary.mk

0 commit comments

Comments
 (0)