home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / src / binutils.2 / libibert / makefile < prev    next >
Encoding:
Makefile  |  1993-11-27  |  344 b   |  26 lines

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