home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume7 / bpatch / Makefile < prev    next >
Encoding:
Makefile  |  1986-11-30  |  485 b   |  21 lines

  1. # This may have to change on your system.
  2. # You may have to fiddle with various combinations of curses, termcap,
  3. # terminfo, etc.  Good luck!
  4. LIBS    = -lcurses -ltermcap
  5. #LIBS    = -ltermlib
  6. #LIBS    = -lterminfo
  7.  
  8. # However you need getopt.
  9. GETOPT    = -lgetopt
  10.  
  11. # If you're running on a 4.[23] system, you probably want this.
  12. WORK    = -DMOD_HAX
  13.  
  14. CFLAGS    = -O $(WORK)
  15.  
  16. bpatch:        bpatch.o
  17.     $(CC) -o bpatch $(CFLAGS) bpatch.o $(GETOPT) $(LIBS)
  18.  
  19. install:
  20.     @echo Use cp to put things where you want them
  21.