CC=gcc -Zomf -Wall 
DEB= -s
CFLAGS= -I $(DEB) -O3 -m486  -fomit-frame-pointer -malign-loops=4

.SUFFIXES:
.SUFFIXES:  .lib  .obj  .c .cpp

.cpp.obj:
        $(CC) $(CFLAGS) -c $<


all:  testGr1.exe


testGr1.exe: testGr1.obj graph2.lib
        $(CC) $(DEB) -Zomf -Zsys testGr1.obj -o $@ -lgraph2

clean:
        -del *.obj *.bak

