Standardize License information
[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 !INCLUDE ..\..\config\NTMakefile.$(SYS_NAME)
13 !INCLUDE ..\..\config\NTMakefile.version
14
15 ############################################################################
16
17 EXEFILE = $(DESTDIR)\bin\sgml2rtf.exe
18
19 EXEOBJS = \
20         main.obj \
21         multistring.obj
22
23 EXELIBS = \
24         user32.lib
25
26 $(EXEFILE) : $(EXEOBJS)
27         $(EXECONLINK) $(EXELIBS)
28         $(EXEPREP) 
29
30 ############################################################################
31 install : $(EXEFILE) lang
32
33 lang ::
34         $(CD) lang
35         @$(MAKECMD) /nologo /f NTMakefile install
36         $(CD) ..
37