moved libs to the lib directory

This commit is contained in:
2025-11-13 18:40:06 +03:00
parent 4678ff1690
commit dda7ed6db8
634 changed files with 3 additions and 2 deletions

View File

@ -36,7 +36,7 @@ CC ?= gcc
CFLAGS ?= -O2 -g
BUILD_DIR ?= build
X502API_ROOT := x502api-1.1.34
X502API_ROOT := lib/x502api-1.1.34
X502_SRC_DIR := $(X502API_ROOT)/src
L502_SRC_DIR := $(X502API_ROOT)/devs/l502
E502_SRC_DIR := $(X502API_ROOT)/devs/e502
@ -56,7 +56,8 @@ INCLUDES := \
-I$(LTIMER_DIR)/ports/$(LTIMER_PORT) \
-I$(LCSPEC_DIR) \
-I$(LCSPEC_DIR)/$(LCSPEC_COMPILER) \
-I$(CRC_DIR)
-I$(CRC_DIR) \
-Ilib
DEFINES := -DOSSPEC_USE_MUTEX -DOSSPEC_USE_EVENTS -DOSSPEC_USE_THREADS \
-DX502API_VER_MAJOR=1 -DX502API_VER_MINOR=1 -DX502API_VER_PATCH=34 \