home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / lib / libi18n / unicode / tbltool / Makefile < prev    next >
Encoding:
Makefile  |  1998-04-08  |  1.5 KB  |  55 lines

  1. #!gmake
  2. #
  3. # The contents of this file are subject to the Netscape Public License
  4. # Version 1.0 (the "NPL"); you may not use this file except in
  5. # compliance with the NPL.  You may obtain a copy of the NPL at
  6. # http://www.mozilla.org/NPL/
  7. #
  8. # Software distributed under the NPL is distributed on an "AS IS" basis,
  9. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10. # for the specific language governing rights and limitations under the
  11. # NPL.
  12. #
  13. # The Initial Developer of this code under the NPL is Netscape
  14. # Communications Corporation.  Portions created by Netscape are
  15. # Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16. # Reserved.
  17.  
  18.  
  19.  
  20. INCLUDES = -I../..
  21. BIN_SUFFIX = .exe
  22. ifneq ($(subst /,_,$(shell uname -s)),OS2)
  23. .c.o:
  24.     cc -c $(CFLAGS)  $(INCLUDES) $*.c
  25. else
  26. .c.o:
  27.     icc -c -Fo$*.o $(CFLAGS) $(INCLUDES) $*.c
  28.     
  29. endif
  30.  
  31. all:    fromu$(BIN_SUFFIX) tou$(BIN_SUFFIX) fromu0208$(BIN_SUFFIX) \
  32.         tou0208$(BIN_SUFFIX) xlatgen$(BIN_SUFFIX) xlatgenmac$(BIN_SUFFIX)
  33.  
  34. xlatgenmac$(BIN_SUFFIX):    xlatgenmac.o xlatgenutil.o
  35.     ILINK -NOFREE -PMTYPE:VIO $?;
  36.  
  37. xlatgen$(BIN_SUFFIX):    xlatgen.o 
  38.     ILINK -NOFREE -PMTYPE:VIO $?;
  39.  
  40. fromu$(BIN_SUFFIX):    fromu.o utblutil.o
  41.     ILINK -NOFREE -PMTYPE:VIO $?;
  42.  
  43. tou$(BIN_SUFFIX):    tou.o utblutil.o
  44.     ILINK -NOFREE -PMTYPE:VIO $?;
  45.  
  46. fromu0208$(BIN_SUFFIX):    fromu0208.o utblutil.o
  47.     ILINK -NOFREE -PMTYPE:VIO $?;
  48.  
  49. tou0208$(BIN_SUFFIX):    tou0208.o utblutil.o
  50.     ILINK -NOFREE -PMTYPE:VIO $?;
  51.  
  52. utblutil.o$(BIN_SUFFIX): ../../umap.h
  53.     ILINK -NOFREE -PMTYPE:VIO $?;
  54.  
  55.