52 lines
1.0 KiB
Makefile
Executable File
52 lines
1.0 KiB
Makefile
Executable File
###################################
|
|
# License: Modified MIT (NON-AI)
|
|
# Copyright 2025 Timothy Prepscius
|
|
# See the LICENSE file in the root directory for license information.
|
|
###################################
|
|
|
|
include $(MAKEDIR)/Makefile.base
|
|
|
|
PROJECTS := \
|
|
tjp/core/algorithm \
|
|
tjp/core/assert \
|
|
tjp/core/containers \
|
|
tjp/core/const_hash \
|
|
tjp/core/debug \
|
|
tjp/core/exception \
|
|
tjp/core/io \
|
|
tjp/core/iterators \
|
|
tjp/core/log \
|
|
tjp/core/ptr \
|
|
tjp/core/ptr/std \
|
|
tjp/core/ptr/using_maps \
|
|
tjp/core/ptr/using_info \
|
|
tjp/core/sfinae \
|
|
tjp/core/string \
|
|
tjp/core/system \
|
|
tjp/core/testing \
|
|
tjp/core/threads \
|
|
tjp/core/threads/std \
|
|
tjp/core/time \
|
|
tjp/core/timer \
|
|
tjp/core/type_traits \
|
|
tjp/core/types \
|
|
|
|
ifeq (Android,$(SYS_NAME))
|
|
|
|
PROJECTS += \
|
|
tjp/core/debug/android \
|
|
|
|
else
|
|
PROJECTS += \
|
|
tjp/core/debug/glib \
|
|
|
|
endif
|
|
|
|
SRC_PCH := tjp/core/Precompile.pch
|
|
INCPATH := $(timprepscius.libraries.cpp.include)
|
|
LIBFILE := libCore_Zero.a
|
|
|
|
COPYTO := $(LIBRARIES_PROJECT)
|
|
|
|
include $(MAKEDIR)/Makefile.lib
|