# 
# Default target
#

default::  libs

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

# Override and define new variables
ZK_PUBLIBS := libbz2.a

ZK_ALL_SRCFILES := \
	blocksort.c \
	bzlib.c \
	compress.c \
	crctable.c \
	decompress.c \
	huffman.c \
	randtable.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)/libbz2.a: $(ZK_FULLCOBJS)


