# Imakefile -- Imake rules for the text-mode test/demo.
# Dean Collins

PTSTOP = ../..
#include "../../Imake.config"


#----------------------------------------------------------------------


           SRCS = convertindex.c
           OBJS = convertindex.o
           HDRS = 
       PROGRAMS = convertindex
       INCLUDES = -I$(PTSTOP) -I$(PTSTOP)/util -I$(PTSTOP)/zdbm \
		  -I$(PTSTOP)/neb_cld -I$(PTSTOP)/config
LOCAL_LIBRARIES = -L$(PTSTOP)/neb_cld -lcloud -L$(PTSTOP)/config -lconfig  \
		  -L$(PTSTOP)/zdbm -lzdbm \
		  -L$(PTSTOP)/util -lutil $(MISSING_LIBS)
        PTSLIBS = $(PTSTOP)/neb_cld/libcloud.a $(PTSTOP)/config/libconfig.a \
		  $(PTSTOP)/zdbm/libzdbm.a $(PTSTOP)/util/libutil.a


AllTarget($(PROGRAMS))
/*ComplexProgramTarget(convertindex)*/
NormalProgramTarget(convertindex,$(OBJS),$(PTSLIBS),$(LOCAL_LIBRARIES),/**/)
LintTarget()


DependTarget()
#InstallProgram(convertindex,$(BINDIR))

#uninstall::
#	$(RM) $(BINDIR)/convertindex
#	@echo "uninstall in $(CURRENT_DIR) done"



