home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume8 / cut+paste / makefile < prev    next >
Encoding:
Makefile  |  1987-02-23  |  241 b   |  18 lines

  1. all: cut paste
  2.  
  3.  
  4. paste: paste.o spaste.o getopt.o
  5.     cc -o paste paste.o spaste.o getopt.o
  6.  
  7. cut: cut.o getopt.o
  8.     cc -o cut cut.o getopt.o
  9.  
  10. lint: lint_cut lint_paste
  11.  
  12. lint_cut:
  13.     lint cut.c getopt.c
  14.  
  15. lint_paste:
  16.     lint paste.c spaste.c getopt.c
  17.  
  18.