home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / Tools / ppls / Makefile < prev    next >
Encoding:
Makefile  |  1991-12-18  |  1.7 KB  |  84 lines

  1. # ppls dummy Makefile
  2. #
  3. ############################################################
  4. #
  5. # @(#) $Header: /xtel/pp/pp-beta/Tools/ppls/RCS/Makefile,v 6.0 1991/12/18 20:32:36 jpo Rel $
  6. #
  7. # $Log: Makefile,v $
  8. # Revision 6.0  1991/12/18  20:32:36  jpo
  9. # Release 6.0
  10. #
  11. #
  12. ############################################################
  13. #
  14. # Definitions
  15. #
  16. ############################################################
  17.  
  18.  
  19.  
  20. SRCS =  ppls.c
  21. OBJS =  ppls.o
  22. # DO NOT DELETE THIS LINE MAKE DEFINE NEEDS IT
  23.  
  24. HEADERS         = ../../h
  25. LIBPP           = ../../Lib/libpp.a
  26. LDFLAGS        = $(LDOPTIONS) $(LLF)
  27. CFLAGS          =  $(CCOPTIONS) $(LCF) -DDEBUG -I$(HEADERS)
  28. LLFLAGS         = $(LINTFLAGS) -I$(HEADERS) -u
  29. LINTLIBS        = ../../Lib/llib-lpp.ln $(LINTISODE)
  30.  
  31.  
  32. ############################################################
  33. #
  34. # Building Rules
  35. #
  36. ############################################################
  37.  
  38. PROGS = xppls
  39.  
  40. default:        $(PROGS)
  41. all:            default
  42. lint:           l-ppls
  43.  
  44. install:        inst-dir inst-ppls
  45. inst-dir:       $(TOOLDIR)
  46.  
  47.  
  48. ppls: xppls
  49. xppls: ppls.o $(LIBPP)
  50.         $(CC) $(LDFLAGS) -o $@ ppls.o $(LIBPP) $(LIBSYS)
  51.  
  52. l-ppls: ppls.c
  53.         $(LINT) $(LINTFLAGS) ppls.c $(LINTLIBS)
  54.  
  55.  
  56. inst-ppls:
  57.     echo "ppls not for installation"
  58.  
  59.  
  60. clean:  tidy
  61.         rm -f $(OBJS)
  62. tidy:
  63.         rm -f core.* $(PROGS) zx* *.old *.BAK
  64.  
  65. depend:
  66.         $(DEPEND) -I$(HEADERS) $(SRCS)
  67.  
  68. define:
  69.         $(DEFINE) Makefile
  70.  
  71.  
  72. ############################################################
  73. #
  74. # End of building rules
  75. #
  76. ############################################################
  77.  
  78. # DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT
  79. # Dependencies follow
  80.  
  81. # DEPENDENCIES MUST END AT END OF FILE
  82. # IF YOU PUT STUFF HERE IT WILL GO AWAY
  83. # see make depend above
  84.