home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-06-21 | 219 b | 13 lines |
- CC = cc
- CFLAGS = -O -DPOSIX
- LDFLAGS=
-
- testgl: libgetline.a testgl.o
- $(CC) $(LDFLAGS) $(CFLAGS) -o testgl testgl.o -L. -lgetline
-
- libgetline.a: getline.o
- ar cr libgetline.a getline.o
-
- clean:
- rm -f *.o *.a testgl
-