home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / libg++ / iostream / baserel / makefile
Encoding:
Makefile  |  1993-12-12  |  826 b   |  25 lines

  1. CC=gccv
  2. CSW=-c
  3. LIB=libbgpp.a
  4. INCS=-I/g/g++-include
  5. ASFLAGS +=-c
  6. CFLAGS=-O2 -fomit-frame-pointer -funroll-loops -Wall -resident
  7.  
  8. OBJ=PlotFile.o SFile.o editbuf.o filebuf.o floatconv.o fstream.o igetline.o \
  9.     igetsb.o indstream.o iomanip.o iostream.o makebuf.o outfloat.o parsestream.o \
  10.     sbufvform.o sbufvscan.o sgetline.o stream.o streambuf.o strstream.o ger_stdstreams.o
  11. # my_stdstrbufs.o stdstreams.o my_stdiostream.o
  12.  
  13. All: $(OBJ)
  14.  
  15. # not supported (yet), they need some more work than only recompiling
  16. #gccv -c procbuf.C /* not neede, execv etc. */
  17. #gccv -c stdiostream.C /* not needed if we use the standard, uses fclose etc. */
  18. #gccv -c stdstrbufs.C /* replaced: my_stdstrbufs.cc (too much amiga changes) */
  19. #gccv -c stdstreams.C /* replaced : ger_stdstreams.cc */
  20.  
  21. gpplib: $(OBJ)
  22.     usr:bin/ar qc ram:$(LIB) $(OBJ)
  23.  
  24.  
  25.