home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fs.zip / octave / readline / examples / makefile < prev    next >
Makefile  |  2000-01-15  |  267b  |  13 lines

  1. CFLAGS = -O -I../../
  2. CC = gcc
  3.  
  4. %.o : %.cc ; $(CC) $(CFLAGS) -c $< -o $@
  5. %.o : %.c ; $(CC) $(CFLAGS) -c $< -o $@
  6.  
  7. all: fileman.exe
  8.  
  9. fileman.exe: fileman.o ../readline.a
  10.     $(CC) -o fileman.exe fileman.o ../readline.a -lxmalloc -Zcrtdll
  11.  
  12. fileman.o: fileman.c
  13.