home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / CLISP / CLISPSRC.TAR / clisp-1995-01-01 / dos / makefile.rle < prev    next >
Encoding:
Makefile  |  1992-11-13  |  174 b   |  9 lines

  1. CC=gcc
  2. CFLAGS=-O -g
  3.  
  4. fileman.exe : fileman.o
  5.     $(CC) $(CFLAGS) fileman.o -L.. -lreadline -ltermcap -o fileman.exe
  6.  
  7. fileman.o : fileman.c
  8.     $(CC) $(CFLAGS) -c fileman.c -I../..
  9.