home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 001-099 / ff039.lzh / Display / Makefile < prev    next >
Makefile  |  1986-10-23  |  184b  |  12 lines

  1. CC =        cc
  2. OBJ =        display.o getopt.o
  3.  
  4. display :    $(OBJ)
  5.         $(CC) -o display $(OBJ)
  6.  
  7. display.o :    display.c
  8.         $(CC) -c $(CFLAGS) display.c
  9.  
  10. getopt.o :    getopt.c
  11.         $(CC) -c $(CFLAGS) getopt.c
  12.