patch-from-shadow-to-jaltman-bkbox-20031120
[openafs.git] / src / WINNT / license / 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 # make compiler warnings fatal
9 AFSDEV_AUXCDEFINES = $(AFSDEV_AUXCDEFINES) -WX
10
11 # include the primary makefile
12 RELDIR=WINNT\license
13 !INCLUDE ..\..\config\NTMakefile.$(SYS_NAME)
14 !INCLUDE ..\..\config\NTMakefile.version
15
16 ############################################################################
17
18 EXEFILE = $(DESTDIR)\bin\sgml2rtf.exe
19
20 EXEOBJS = \
21         $(OUT)\main.obj \
22         $(OUT)\multistring.obj
23
24 EXELIBS = \
25         user32.lib
26
27 $(EXEFILE) : $(EXEOBJS)
28         $(EXECONLINK) $(EXELIBS)
29         $(EXEPREP) 
30
31 ############################################################################
32 install : $(EXEFILE) lang
33
34 lang ::
35         $(CD) lang
36         @$(MAKECMD) /nologo /f NTMakefile install
37         $(CD) ..
38
39 mkdir:
40         -mkdir $(OUT)\lang
41         cd lang
42         nmake /nologo /f ntmakefile SRC=$(SRC) OBJ=$(OBJ) mkdir
43         cd ..