CC=gccv
CSW=-c
LIB=libgpp.a
INCS=-I/g/g++-include
ASFLAGS +=-c
CFLAGS=-O2 -fomit-frame-pointer -funroll-loops -Wall

OBJ=PlotFile.o SFile.o editbuf.o filebuf.o floatconv.o fstream.o igetline.o \
    igetsb.o indstream.o iomanip.o iostream.o makebuf.o outfloat.o parsestream.o \
    sbufvform.o sbufvscan.o sgetline.o stream.o streambuf.o strstream.o ger_stdstreams.o
# my_stdstrbufs.o stdstreams.o my_stdiostream.o

All: $(OBJ)

# not supported (yet), they need some more work than only recompiling
#gccv -c procbuf.C /* not neede, execv etc. */
#gccv -c stdiostream.C /* not needed if we use the standard, uses fclose etc. */
#gccv -c stdstrbufs.C /* replaced: my_stdstrbufs.cc (too much amiga changes) */
#gccv -c stdstreams.C /* replaced : ger_stdstreams.cc */

gpplib: $(OBJ)
	usr:bin/ar qc ram:$(LIB) $(OBJ)


