home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume3 / nobs / Makefile next >
Encoding:
Makefile  |  1989-02-03  |  238 b   |  17 lines

  1. # %M% for nobs
  2.  
  3. BINDIR = /usr/local/bin
  4. TARGET = nobs
  5.  
  6. $(TARGET): nobs.c
  7.     $(CC) $(CFLAGS) -o $(TARGET) nobs.c
  8.  
  9. install: nobs
  10.     strip nobs
  11.     @-rm $(BINDIR)/$(TARGET)
  12.     ln $(TARGET) $(BINDIR)
  13.     touch install
  14.  
  15. Lint:    nobs.c
  16.     lint -p nobs.c >Lint
  17.