Tasmota/lib/libesp32/RadioLib/examples/NonArduino/Tock/libtock-c/libtock/Makefile
2024-02-23 16:20:09 +01:00

13 lines
479 B
Makefile

# Libtock makefile. Can build Libtock standalone. Also included by application
# makefiles to ensure their libtock dependency is built
# Base folder definitions
TOCK_USERLAND_BASE_DIR ?= ..
LIBNAME := libtock
$(LIBNAME)_DIR := $(TOCK_USERLAND_BASE_DIR)/$(LIBNAME)
# List all C and Assembly files
$(LIBNAME)_SRCS := $(wildcard $($(LIBNAME)_DIR)/internal/*.c) $(wildcard $($(LIBNAME)_DIR)/*.c) $(wildcard $($(LIBNAME)_DIR)/*.s)
include $(TOCK_USERLAND_BASE_DIR)/TockLibrary.mk