# 
# Default target
#

default:: libs

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

# Override and define new variables
ZK_PUBLIBS := libyarrow.a
ZK_DSPS := Yarrow.dsp

ZK_INCS := \
	-I$(ZK_ROOT)lib3rd$(/)openssl$(/)include \
	$(ZK_INCS) \
	$(END_OF_LIST)

ZK_ALL_SRCFILES := \
	yarrow.c \
	ystate.c \
	yseed.c \
	$(END_OF_LIST)

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

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


# Specify dependencies
$(ZK_BUILDDIR_PUBLIB)/libyarrow.a: $(ZK_FULLCOBJS)


