#############################################################################
#
#                   Copyright (C) 1995 SciTech Software
#                           All rights reserved.
#
# Descripton:   Generic makefile for the console library. Requires the
#               SciTech Software makefile definitions package to be
#               installed.
#
#############################################################################

# DOS extender dependant flags

CFLAGS          += $(DX_CFLAGS)
ASFLAGS         += $(DX_ASFLAGS)

# Name of library and object files required to build it

OBJECTS         = console$O
LIBFILE         = $(LP)console$L

# Define the list of object files to create dependency information for

DEPEND_OBJ      = $(OBJECTS) test$O

test$E: test$O $(LIBFILE)

.INCLUDE: "$(SCITECH)/makedefs/common.mk"

