# GNUmakefile
# definitions for building "adt"

TOP = ../..
NAME = adt
TYPE = lib
OBJ = array list table
LIB =
LINKCPP = no
HEADER = array list table
DEMO = demo_array demo_list demo_table
DEMOOBJ =
DEMOLIB = adt
DEMOLINKCPP = no

# allow building from this directory
ifeq (0,$(MAKELEVEL))
.PHONY : src clean
src clean : ; $(MAKE) -C $(TOP) SRC="$(NAME)" $@
endif
