nt-makefile-clean-targets-20010917
[openafs.git] / src / cmd / NTMakefile
1 # Copyright 2000, International Business Machines Corporation and others.
2 # All Rights Reserved.
3
4 # This software has been released under the terms of the IBM Public
5 # License.  For details, see the LICENSE file in the top-level source
6 # directory or online at http://www.openafs.org/dl/license10.html
7
8 !INCLUDE ..\config\NTMakefile.$(SYS_NAME)
9 !INCLUDE ..\config\NTMakefile.version
10
11
12 # install include files 
13 INCFILEDIR = $(DESTDIR)\include\afs 
14
15 INCFILES =\
16         $(INCFILEDIR)\cmd.h
17
18
19 # build afscmd.lib
20 LIBFILE = $(DESTDIR)\lib\afs\afscmd.lib
21
22 LIBOBJS =\
23         cmd_errors.obj \
24         cmd.obj \
25         AFS_component_version_number.obj
26
27 $(LIBFILE): $(LIBOBJS) 
28         $(LIBARCH) 
29
30
31 cmd_errors.c cmd.h: cmd_errors.et cmd.p.h
32         $(DEL) cmd_errors.c cmd.h
33         $(COMPILE_ET) cmd_errors -h cmd
34
35
36 install: $(LIBFILE) $(INCFILES)
37
38 install9x: install
39
40 clean::
41         $(DEL) cmd_errors.c cmd.h
42         $(DEL) $(LIBFILE)
43
44 test tests:
45