home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / libg++-2.6-fsf.lha / libg++-2.6 / libiberty / makefile.dos < prev    next >
Makefile  |  1994-05-27  |  358b  |  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.