#############################################################################
#
#								 Zen Timer
#
#							   From the book
#						 "Zen of Assembly Language"
#							Volume 1, Knowledge
#
#							 by Michael Abrash
#
# Descripton:   Generic makefile for the Zen Timer Library. Requires the
#               SciTech Software Makefile Utilities package to be
#               installed.
#
# $Id: makefile 1.11 1994/08/22 11:56:54 kjb Exp $
#
#############################################################################

# DOS extender dependant flags

CFLAGS          += $(DX_CFLAGS)

# Name of library and object files required to build it

LIBFILE         = ztimer$L
OBJECTS         = lztimer$O ulztimer$O ztimer$O

# Name of executable files built

EXEFILES        = test$E
EXELIBS         = pmode.lib

test$E: test$O $(LIBFILE)

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

RCSFILES        = testc.c ulztimer.c test.cpp ztimer.cpp lztimer.asm
RCSFILES_H      = ztimer.h

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

# Include file dependencies

ztimer$O:   ..\..\include\ztimer.h
ulztimer$O: ..\..\include\ztimer.h

