home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8712 / mkmf / 2 / x.Makefile / Makefile < prev    next >
Encoding:
Makefile  |  1990-07-13  |  650 b   |  47 lines

  1. # $Header: Makefile,v 1.1 85/03/14 15:59:05 nicklin Exp $
  2. #
  3. #DEST          = $(DESTDIR)/usr/new/lib
  4. DEST          = $(DESTDIR)/lib
  5.  
  6. MAKEFILE      = Makefile
  7.  
  8. PRINT          = pr
  9.  
  10. PROGRAM          = p.Makefile
  11.  
  12. SRCS          = l.Makefile \
  13.         p.Makefile \
  14.         t.Makefile
  15.  
  16. SUFFIX          = .Makefile:s
  17.  
  18. VERSION          = V4BSD
  19.  
  20. all:;
  21.  
  22. clean:;
  23.  
  24. co:;        @co -r$(VERSION) $(SRCS)
  25.  
  26. depend:;
  27.  
  28. diff:;        @rcsdiff -r$(VERSION) $(HDRS) $(SRCS)
  29.  
  30. index:;
  31.  
  32. install:    $(SRCS)
  33.         @echo Installing $(SRCS) in $(DEST)
  34.         @cp $(SRCS) $(DEST)
  35.  
  36. lint:;
  37.  
  38. print:;        @$(PRINT) $(SRCS)
  39.  
  40. tags:;
  41.  
  42. update:        $(DEST)/$(PROGRAM)
  43.  
  44. $(DEST)/$(PROGRAM): $(SRCS)
  45.         @make -f $(MAKEFILE) DEST=$(DEST) install tags
  46. ###
  47.