home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume5 / dither / Makefile next >
Makefile  |  1986-11-30  |  140b  |  12 lines

  1. #
  2. #    Makefile for tcd (Tape color dither)
  3. #
  4. CC    = /bin/cc
  5. CFLAGS    = -O
  6.  
  7. tcd: tcd.c
  8.     $(CC) $(CFLAGS) -o $@ tcd.c -lpixrect
  9.  
  10. clean:
  11.     rm -f tcd.o
  12.