home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / lib / librpc / demo / Makefile next >
Encoding:
Makefile  |  1989-07-11  |  361 b   |  26 lines

  1. #
  2. # @(#)Makefile    2.1 88/08/02 4.0 RPCSRC
  3. #
  4. #
  5. #   Build all demo services
  6. #
  7. MAKE = make
  8. LIB=-lrpclib
  9.  
  10. SUBDIR= dir msg sort
  11.  
  12. all:    ${SUBDIR}
  13.  
  14. clean cleanup:
  15.     cd dir; $(MAKE) ${MFLAGS} cleanup
  16.     cd msg; $(MAKE) ${MFLAGS} cleanup
  17.     cd sort; $(MAKE) ${MFLAGS} cleanup
  18.  
  19. install:
  20.     @echo "No installations done."
  21.  
  22. ${SUBDIR}:    FRC
  23.     cd $@; $(MAKE) ${MFLAGS} LIB=$(LIB)
  24.  
  25. FRC:
  26.