home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / GDB / GDB-4.13 / GDB-4 / gdb-4.13 / libiberty / makefile.dos < prev    next >
Encoding:
Makefile  |  1994-05-27  |  358 b   |  29 lines

  1. CFLAGS=-O2
  2.  
  3. OBJS = \
  4.     argv.o \
  5.     basename.o \
  6.     concat.o \
  7.     cplus-dem.o \
  8.     fdmatch.o \
  9.     floatformat.o \
  10.     getopt.o \
  11.     getopt1.o \
  12.     getruntime.o \
  13.     msdos.o \
  14.     obstack.o \
  15.     spaces.o \
  16.     strerror.o \
  17.     strsignal.o \
  18.     xatexit.o \
  19.     xexit.o \
  20.     xmalloc.o \
  21.     $E
  22.  
  23. .c.o:
  24.     gcc -I../include $(CFLAGS) -c $<
  25.  
  26. libiberty.a : $(OBJS)
  27.     -rm libiberty.a
  28.     ar rvs libiberty.a $(OBJS)
  29.