#
# makefile:
#       makefile for TOOLS\ directory.
#       For use with IBM NMAKE, which comes with the IBM compilers,
#       the Developer's Toolkit, and the DDK.
#
#       All the makefiles have been restructured with V1.0.0.
#
#       Called from:    main makefile
#
#       Input:          none
#
#       Output:         all XWorkplace tools as EXEs, in this directory.
#
#       Edit "setup.in" to set up the make process.
#

# Say hello to yourself.
!if [@echo +++++ Entering $(MAKEDIR)]
!endif

all: inf2html xdoc strrpl
    @echo ----- Leaving $(MAKEDIR)

inf2html:
    @cd inf2html
    @nmake -nologo all "MAINMAKERUNNING=YES"
    @cd ..

strrpl:
    @cd strrpl
    @nmake -nologo all "MAINMAKERUNNING=YES"
    @cd ..

xdoc:
    @cd xdoc
    @nmake -nologo all "MAINMAKERUNNING=YES"
    @cd ..


