home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xwplascr.zip / XWPL0208.ZIP / 001 / makefile < prev    next >
Makefile  |  2002-02-26  |  2KB  |  49 lines

  1.  
  2. # Copyright (C) 1997-2002 Ulrich Möller.
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation, in version 2 as it comes in the COPYING
  6. # file of the XWorkplace main distribution.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. # GNU General Public License for more details.
  11. # Required changes for translating the NLS DLL: three lines below.
  12.  
  13. # Say hello to yourself.
  14. !if [@echo +++++ Entering $(MAKEDIR)]
  15. !endif
  16.  
  17. # include setup (compiler options etc.)
  18. !include ..\setup.in
  19.  
  20. # This is the language code for the language that the NLS DLL
  21. # will support. Change this to a different language code, and
  22. # the makefile will support your language. The language code
  23. # MUST have three digits exactly.
  24. LANGUAGE = 001
  25.  
  26. #
  27. # DO NOT CHANGE THE FOLLOWING
  28. #
  29.  
  30. all:
  31.     @echo $(MAKEDIR)\makefile [$@]: Going for subdir $(LANGUAGE)\dll
  32.     @cd dll
  33.     @nmake -nologo all "MAINMAKERUNNING=YES" $(SUBMAKE_PASS_STRING)
  34.     @cd ..
  35.     @echo $(MAKEDIR)\makefile [$@]: Going for subdir $(LANGUAGE)\inf.$(LANGUAGE)
  36.     @cd inf.$(LANGUAGE)
  37.     @nmake -nologo all "MAINMAKERUNNING=YES" $(SUBMAKE_PASS_STRING)
  38.     @cd ..
  39.     @echo $(MAKEDIR)\makefile [$@]: Going for subdir $(LANGUAGE)\misc
  40.     @cd misc
  41.     @nmake -nologo all "MAINMAKERUNNING=YES" $(SUBMAKE_PASS_STRING)
  42.     @cd ..
  43.     @echo $(MAKEDIR)\makefile [$@]: Going for subdir $(LANGUAGE)\xwphelp2
  44.     @cd xwphelp2
  45.     @nmake -nologo all "MAINMAKERUNNING=YES" $(SUBMAKE_PASS_STRING)
  46.     @cd ..\..
  47.     @echo ----- Leaving $(MAKEDIR)
  48.  
  49.