[v1.05] Move sysctl from ARM-specific to common (#251)

This commit is contained in:
Dr-Noob
2024-07-07 12:43:03 +01:00
parent 946729dd06
commit 65378aaed9
5 changed files with 6 additions and 6 deletions

View File

@@ -43,8 +43,8 @@ ifneq ($(OS),Windows_NT)
CFLAGS += -DARCH_ARM -Wno-unused-parameter -std=c99 -fstack-protector-all
ifeq ($(os), Darwin)
SOURCE += $(SRC_DIR)sysctl.c
HEADERS += $(SRC_DIR)sysctl.h
SOURCE += $(COMMON_SRC)sysctl.c
HEADERS += $(COMMON_SRC)sysctl.h
endif
else ifeq ($(arch), $(filter $(arch), riscv64 riscv32))
SRC_DIR=src/riscv/