#############################################################################
#
#                   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.
#
# $Date:   05 Feb 1996 20:44:30  $ $Author:   KendallB  $
#
#############################################################################

# DOS extender dependant flags

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

# Name of library and object files required to build it

LIBFILE         = console$L
OBJECTS         = console$O

test$E: test$O $(LIBFILE)

# Source files to check in with RCS (RCSFILES_H are in SCITECH\INCLUDE)

RCSFILES        = console.c test.c
RCSFILES_H      = console.h

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

DEPEND_OBJ      = $(OBJECTS) test$O

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

