# # 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 V0.9.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: h2i repclass wpsreset xunlock @echo ----- Leaving $(MAKEDIR) h2i: @cd h2i @$(MAKE) -nologo all "MAINMAKERUNNING=YES" @cd .. repclass: @cd repclass @$(MAKE) -nologo all "MAINMAKERUNNING=YES" @cd .. wpsreset: @cd wpsreset @$(MAKE) -nologo all "MAINMAKERUNNING=YES" @cd .. xunlock: @cd xunlock @$(MAKE) -nologo all "MAINMAKERUNNING=YES" @cd ..