20 lines
422 B
Makefile
Executable File
20 lines
422 B
Makefile
Executable File
###################################
|
|
# License: Modified MIT (NON-AI)
|
|
# Copyright 2025 Timothy Prepscius
|
|
# See the LICENSE file in the root directory for license information.
|
|
###################################
|
|
|
|
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
|
|
|
include $(SELF_DIR)/Makefile.src
|
|
|
|
ifdef BUILD_PCH
|
|
include $(SELF_DIR)/Makefile.build_pch
|
|
else
|
|
include $(SELF_DIR)/Makefile.build_shared_lib
|
|
endif
|
|
|
|
all: build
|
|
|
|
|