Clean up assertion
[openafs.git] / src / opr / NTMakefile
1 # Copyright 2011, Your File System Inc
2 # All rights reserved
3 #
4 # This software has been released under the terms of the BSD License
5 # For details, see the LICENSE file in the top level source directory
6
7 RELDIR=opr
8 !include ..\config\NTMakefile.$(SYS_NAME)
9 !include ..\config\NTMakefile.version
10
11 INCFILEDIR = $(DESTDIR)\include\afs
12
13 INCFILES = \
14         $(INCFILEDIR)\opr.h \
15         $(INCFILEDIR)\opr_assert.h
16
17 LIBFILE = $(DESTDIR)\lib\opr.lib
18
19 LIBOBJS = \
20         $(OUT)\assert.obj \
21         $(OUT)\casestrcpy.obj \
22         $(OUT)\AFS_component_version_number.obj
23
24 $(LIBOBJS): $(INCFILES)
25
26 !if !defined(NMAKE)
27 NTMAKE = nmake /nologo /f ntmakefile
28 !endif
29
30 $(LIBFILE): $(LIBOBJS)
31         $(LIBARCH)
32
33 install_headers: $(INCFILES)
34
35 install: install_headers $(LIBFILE)
36
37 clean::
38         $(DEL) $(INCFILES)
39         $(DEL) $(LIBFILE)