# 
# Default target
#

default:: libs

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

# Override and define new variables
ZK_PUBLIBS := libpopt.a
ZK_DEFS := $(ZK_DEFS) -DHAVE_STRERROR -DHAVE_ALLOCA_H -DHAVE_UNISTD_H -DHAVE_STRING_H

ZK_ALL_SRCFILES := \
	findme.c \
	popt.c \
	poptconfig.c \
	popthelp.c \
	poptparse.c \
	$(END_OF_LIST)

ZK_COBJS   := $(ZK_ALL_SRCFILES:.c=.o)

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

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


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


