home *** CD-ROM | disk | FTP | other *** search
/ The UNIX CD Bookshelf / OREILLY_TUCB_UNIX_CD.iso / upt / examples / SOURCES / REN / AMEFILES.Z / AMEFILES / Makefile next >
Encoding:
Makefile  |  1998-07-24  |  152 b   |  9 lines

  1. all:    ren ren.1
  2.  
  3. ren:    ren.c
  4.     $(CC) -o ren $(CFLAGS) ren.c
  5. install:    all
  6.     @echo "install according to local convention"
  7. clean:
  8.     rm -f core a.out ren ren.o
  9.