home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume12 / cnews / part01 / libc / stdio.fast / makefile < prev    next >
Encoding:
Makefile  |  1987-10-19  |  285 b   |  16 lines

  1. # makefile for dmr.faster
  2.  
  3. SRC=fgets.c fputs.c rdwr.c # memcpy.c
  4. DEFINES = -DBSD # -pg # -Dvoid=int
  5. CFLAGS = $(DEFINES) -O
  6. LINTFLAGS = $(DEFINES) -ha
  7.  
  8. dmr.faster: $(SRC)
  9.     $(CC) $(CFLAGS) -c $(SRC)
  10.     touch $@
  11.  
  12. lint:
  13.     lint $(LINTFLAGS) -u $(SRC)
  14. lintport:
  15.     lint -p $(LINTFLAGS) -u $(SRC)
  16.