fix-lwp-20031010
[openafs.git] / src / lwp / 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 # nmake Makefile for NT build of LWP. 
9
10 !include ..\config\NTMakefile.$(SYS_NAME)
11 !include ..\config\NTMakefile.version
12
13 LIBOBJS = $(OJT)\lock.obj \
14           $(OJT)\lwp_nt.obj \
15           $(OJT)\iomgr.obj \
16           $(OJT)\timer.obj\
17           $(OJT)\fasttime.obj \
18           $(OJT)\waitkey.obj \
19           $(OJT)\threadname.obj \
20           $(OJT)\AFS_component_version_number.obj
21
22 LIBFILE = $(DESTDIR)\lib\afslwp.lib
23
24 INCFILES = \
25         $(DESTDIR)\include\lock.h \
26         $(DESTDIR)\include\lwp.h \
27         $(DESTDIR)\include\preempt.h \
28         $(DESTDIR)\include\timer.h
29
30
31
32 install: $(LIBFILE) $(INCFILES)
33
34 install9x: install
35
36 $(LIBFILE): $(LIBOBJS)
37         $(LIBARCH)
38
39 tests: $(OJT)\rw.exe
40
41 $(OJT)\rw.exe: $(OJT)\rw.obj $(LIBFILE) $(DESTDIR)\lib\afs\afsutil.lib
42         $(EXECONLINK)
43
44 clean::
45         $(DEL) $(LIBFILE)
46
47 mkdir:
48