openafs/src/rxgen/NTMakefile
Jeffrey Altman 98544e6ab4 patch-from-shadow-to-jaltman-bkbox-20031120
This massive patch contains changes in several significant areas for Windows:

- the ability to specify the mount point to be something other than /afs

- functionality to assist debugging of the NT Services

- support for languages other than English (NTLang.bat)

- revisions to the Build system to support separate trees for src, obj,
  dest and free or checked; allow any MS compiler to be used

- updates to NSIS installer build

- mutex locking added to critical locations

- updates to IS5 directory tree creation

- update to afswsNetscape_config.sh
2003-11-21 07:59:35 +00:00

48 lines
957 B
Plaintext

# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
RELDIR=rxgen
!INCLUDE ..\config\NTMakefile.$(SYS_NAME)
!INCLUDE ..\config\NTMakefile.version
INCFILEDIR = $(DESTDIR)\include\afs
INCFILES =\
$(INCFILEDIR)\rxgen_consts.h
# build rxgen
EXEFILE = $(DESTDIR)\bin\rxgen.exe
EXEOBJS =\
$(OUT)\rpc_main.obj \
$(OUT)\rpc_hout.obj \
$(OUT)\rpc_cout.obj \
$(OUT)\rpc_parse.obj \
$(OUT)\rpc_scan.obj \
$(OUT)\rpc_util.obj \
$(OUT)\rpc_svcout.obj \
$(OUT)\rpc_clntout.obj
$(EXEOBJS): $$(@B).c
$(C2OBJ) $**
$(EXEFILE): $(EXEOBJS) $(EXELIBS)
$(EXECONLINK)
$(EXEPREP)
install: AFS_component_version_number.c $(EXEFILE) $(INCFILES)
install9x: install
clean::
$(DEL) $(EXEFILE)
mkdir: