home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / diffs / gdb-4.12 / readline / examples / makefile.dos < prev   
Encoding:
Makefile  |  1994-08-05  |  472 b   |  18 lines

  1. *** orig/gdb-4.12/readline/examples/makefile.dos    Mon Jul 25 23:39:36 1994
  2. --- src/gdb-4.12/readline/examples/makefile.dos    Mon Jul 25 23:39:54 1994
  3. ***************
  4. *** 0 ****
  5. --- 1,12 ----
  6. + # This is the Makefile for the examples subdirectory of readline. -*- text -*-
  7. + #
  8. + EXECUTABLES = fileman
  9. + CFLAGS  = -g -I../..
  10. + LDFLAGS = -g -L..
  11. + fileman: fileman.o
  12. +     $(CC) $(LDFLAGS) -o fileman fileman.o -lreadline -lpc
  13. + fileman.o: fileman.c
  14. +   
  15.