# file: makefile.dos	G. Moody	2 November 1989
#			Last revised:	 24 March 1992
# MSDOS `make' description file template for local and piped DB headers, etc.
#
# Copyright(C) Massachusetts Institute of Technology 1992. All rights reserved.

# This file is a template for a `make' description file generated by `install',
# which generates `makefile' by concatenating `dbconfig' with this file (and
# stripping out comments).  To use this file without `install', define these
# variables as appropriate for your system:

#   DBDIR	The directory in which DB data files will be installed.

# Commands needed to install the local and piped DB headers are given below for
# several versions of `make'.
#
# Borland (Turbo) `make':
#    make install
# Microsoft `make' (supplied with Microsoft C before version 6.0):
#    make makefile
# Microsoft `nmake' (supplied with Microsoft C 6.0 and later versions):
#    nmake install

# Most versions of `make' allow you to override the settings of make variables
# from the command line, so that it may not be necessary to edit this file to
# test the effects of small modifications to it.

# It should not be necessary to modify anything below this line.
# -----------------------------------------------------------------------------

$(DBDIR):
	-mkdir $(DBDIR)

install:	$(DBDIR)
	copy *.hea $(DBDIR)
	copy dbcal $(DBDIR)
	copy dblist $(DBDIR)
	copy mitlist $(DBDIR)
	copy mitxlist $(DBDIR)
	copy ahalist $(DBDIR)
	copy ahaxlist $(DBDIR)
	copy esclist $(DBDIR)
	copy nstlist $(DBDIR)
	copy culist $(DBDIR)

clean:
