home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume11 / soundslike / Makefile next >
Makefile  |  1987-10-18  |  178b  |  10 lines

  1. # Makefile for soundslike.
  2. CFLAGS    = -O
  3. p    = soundslike
  4. all:        $p $p.1
  5. install:    all
  6.     @echo install $p and $p.1 according to local convention.
  7.  
  8. $p:        $p.c
  9.     $(CC) $(CFLAGS) -o $p $p.c
  10.