all: library tools

library: 
   cd geomsrc
   make install
   cd ..

tools:
   cd tools
   make install
   cd ..

zip:
  pkzip -P iegeom iegeom.doc makefile 
  pkzip -P geomsrc\makefile geomsrc\*.h geomsrc\*.c geomsrc\*.rsp
  pkzip -P iegeom tools\makefile tools\*.c 
  pkzip -P iegeom exec\readme lib\readme include\readme

clean:
  cd geomsrc
  make clean
  cd ..\tools
  make clean
  cd ..

