# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
# 
# This software has been released under the terms of the IBM Public
# License.  For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html

!INCLUDE ..\config\NTMakefile.$(SYS_NAME)
!INCLUDE ..\config\NTMakefile.version


# install include files 
INCFILEDIR = $(DESTDIR)\include\afs 

INCFILES =\
	$(INCFILEDIR)\cmd.h


# build afscmd.lib
LIBFILE = $(DESTDIR)\lib\afs\afscmd.lib

LIBOBJS =\
	cmd_errors.obj \
	cmd.obj \
	AFS_component_version_number.obj

$(LIBFILE): $(LIBOBJS) 
	$(LIBARCH) 


cmd_errors.c cmd.h: cmd_errors.et cmd.p.h
	$(DEL) cmd_errors.c cmd.h
	$(COMPILE_ET) cmd_errors -h cmd


install: $(LIBFILE) $(INCFILES)

install9x: install

clean::
	$(DEL) cmd_errors.c cmd.h
	$(DEL) $(LIBFILE)

test tests:
	
