# 
# Default target
#

default:: exes

# Get the variables definition
include $(ZK_ROOT)/makefiles/Makefile.vars

# Override and define new variables
ZK_INCS := \
	-I$(ZK_ROOT)lib3rd$(/)openssl$(/)include \
	$(ZK_INCS) \
	$(END_OF_LIST)

ZK_ALL_SRCFILES := \
	timer.c \
	ytest.c \
	$(END_OF_LIST)

ZK_CPUBEXES = \
	ytest \
	$(END_OF_LIST)

# Get the target rules
include $(ZK_ROOT)/makefiles/Makefile.targs

# Add new targets or complement default target using :: rules


# Specify dependencies
$(addprefix $(ZK_BUILDDIR_PUBBIN)/,$(ZK_CPUBEXES)): $(ZK_BUILDDIR_PUBBIN)/%: $(ZK_BUILDDIR_PROJ)/%.o $(ZK_BUILDDIR_PROJ)/timer.o -lyarrow -lcrypto


