home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume6 / lj_filter / Makefile < prev    next >
Encoding:
Makefile  |  1986-11-30  |  200 b   |  11 lines

  1. # Where is getopt on your system?
  2. GETOPT    = -lgetopt
  3.  
  4. # If you get errors, comment out the next line.
  5. DEFS    = -DBIGHELPTEXT
  6.  
  7. CFLAGS    = -O $(DEFS)
  8.  
  9. laser:    laser.c
  10.     cc $(CFLAGS) -o laser laser.c $(GETOPT)
  11.