Make so that Makefile finds .kt files at any subdirectory nesting.

This commit is contained in:
bʰedoh₂ swé 2024-05-26 08:11:15 +05:00
parent 2a4d353aa4
commit c6f54d9358

View File

@ -6,7 +6,9 @@ SRC_DIR := src
RES_DIR := res RES_DIR := res
SRCS := $(wildcard $(SRC_DIR)/*/*.kt) rwildcard=$(wildcard $1$2) $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2))
SRCS := $(call rwildcard,$(SRC_DIR),*.kt)
CLASSNAME := com.Hello CLASSNAME := com.Hello