home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-05 | 472 b | 18 lines |
- *** orig/gdb-4.12/readline/examples/makefile.dos Mon Jul 25 23:39:36 1994
- --- src/gdb-4.12/readline/examples/makefile.dos Mon Jul 25 23:39:54 1994
- ***************
- *** 0 ****
- --- 1,12 ----
- + # This is the Makefile for the examples subdirectory of readline. -*- text -*-
- + #
- +
- + EXECUTABLES = fileman
- + CFLAGS = -g -I../..
- + LDFLAGS = -g -L..
- +
- + fileman: fileman.o
- + $(CC) $(LDFLAGS) -o fileman fileman.o -lreadline -lpc
- +
- + fileman.o: fileman.c
- +
-