#############################################################################
#
#                   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.
#
# $Id: makefile 1.1 1995/09/16 10:58:51 kjb release $
#
#############################################################################

# 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"

