CC=	cl
CLIB=	..
HH=	$(CLIB)\h
LL=	$(CLIB)\l
ULIB=	$(LL)\util.lib

CFLAGS=	-Ox -G2 -AL -W4 -I$(HH)

OBJS= tick.obj get_str.obj

now:	$(ULIB)

$(ULIB):	$(OBJS)
	del $(ULIB)
	lib $(ULIB) +tick +get_str;

tick.obj:	tickobj
	copy tickobj tick.obj

#
# Utility programs
#

gettimer.exe:	gettimer.c
	$(CC) -AS -Ox -W4 gettimer.c

settimer.exe:	settimer.c
	$(CC) -AS -Ox -W4 settimer.c


