home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume21 / mmv / part01 / Makefile < prev    next >
Makefile  |  1990-04-08  |  281b  |  11 lines

  1. all:    mmv mmv.1
  2.  
  3. mmv:    mmv.c
  4.     $(CC) -o mmv $(CFLAGS) mmv.c
  5. install:    all
  6.     @echo "Install mmv according to local convention,"
  7.     @echo "then make links named mcp, mad, and mln to mmv."
  8.     @echo "Under System V, edit mmv.1 to uncomment the .nr O 1 line."
  9. clean:
  10.     rm -f core a.out mmv mmv.o
  11.