home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OS9000 / APPS / diff.lzh / diff / Makefile < prev    next >
Encoding:
Makefile  |  1986-04-24  |  1.4 KB  |  58 lines

  1. #************************************************************************
  2. # $Id: Makefile_v 1.1 96/04/23 02:48:49 hiro Exp $
  3. # Copyright (c) 1996 ARK Systems USA
  4. # All rights reserved.
  5. #
  6. #    This source code is the proprietary confidential of ARK Systems USA,
  7. #    and is provided to licesee for documentation and education purposes
  8. #    only. Reproduction, publication, or distribution in any form to a
  9. #    party other than the licensee without prior written permit from ARK
  10. #    Systems USA is strictly prohibited.
  11. #
  12. #  Product name: diff - ported from GNU
  13. # Files created:
  14. # $Date: 96/04/23 02:48:49 $
  15. # $Revision: 1.1 $
  16. #
  17. # $Log:    Makefile_v $
  18. # Revision 1.1  96/04/23  02:48:49  hiro
  19. # Initial revision
  20. # Revision 1.1  96/04/07  16:43:50  hiro
  21. # Initial revision
  22. #*************************************************************************
  23.  
  24. ODIR    =    BUILD/CMDS
  25. RDIR    =    RELS
  26. TDIR    =    /tmp
  27. #TDIR    =    .
  28. IDIR    =    /dd/DEFS
  29.  
  30. CC        =    cc
  31. LD        =    cc
  32. CD        =    chd
  33.  
  34. #INCLUDES    =    -v=/dd/MWOS/OS9000/SRC/DEFS -v=/dd/DEFS -v=.
  35. INCLUDES    =    -v=/dd/DEFS -v=/dd/MWOS/OS9000/SRC/DEFS -v=.
  36.  
  37. #CFLAGS    =    -td=$(TDIR) $(INCLUDES) -b
  38. CFLAGS    =    -D_OS9000 -t=$(TDIR) $(INCLUDES) -g
  39.  
  40. LDFLAGS    = -g
  41. LIBS    =
  42.  
  43. o        =    .r
  44. diff_o    =    diff$o analyze$o cmpbuf$o dir$o io$o util$o    \
  45.             context$o ed$o ifdef$o normal$o side$o    \
  46.             fnmatch$o getopt$o getopt1$o regex$o version$o    \
  47.             stat$o
  48.  
  49. $(ODIR)/diff : $(diff_o)
  50.     $(CD) $(RDIR); $(LD) $(LDFLAGS) $(LIBS) $(diff_o) -FD=../$@;    \
  51.     fixmod -uo=0.0 ../$@
  52.  
  53. $(diff_o) :
  54.     $(CC) $(CFLAGS) $*.c -r=$(RDIR)
  55.