home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume7 / my_wgetstr / makefile < prev    next >
Makefile  |  1989-06-03  |  128b  |  7 lines

  1. LIBS= -lcurses -ltermcap
  2. OBJS= example.o my_wgetstr.o
  3. CFLAGS= -s -O
  4.  
  5. example: $(OBJS)
  6.     cc $(CFLAGS) -o example $(OBJS) $(LIBS) 
  7.