home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / getline.zip / Makefile < prev    next >
Makefile  |  1993-08-15  |  245b  |  14 lines

  1. CC     = gcc
  2. CFLAGS = -Wall -DPOSIX
  3. LDFLAGS= 
  4.  
  5. testgl: libgetline.a testgl.o
  6.     $(CC) $(LDFLAGS) $(CFLAGS) -o testgl testgl.o -L. -lgetline
  7.  
  8. libgetline.a: getline.o
  9.     ar cr libgetline.a getline.o
  10.     -ranlib libgetline.a
  11.  
  12. clean:
  13.     rm -f *.o *.a testgl
  14.