# FILE: Makefile98 # PURPOSE: Build executable file fishsim on GNU for Windows 1998 system # NOT FOR: Linux or Cygwin systems (which use g++ instead of gxx) # TO USE: From the command line, enter: make -f Makefile98 # TO EXECUTE: From the command line, enter: ./fishsim fishsim: fishsim.cpp apstring.cpp environ.o fish.o position.o nbrhood.o utils.o display.o simulate.o randgen.o gxx -o fishsim fishsim.cpp apstring.cpp environ.o fish.o position.o nbrhood.o utils.o display.o simulate.o randgen.o echo "Enter \"./fishsim\" to execute." environ.o: environ.cpp environ.h gxx -c environ.cpp fish.o: fish.h fish.cpp gxx -c fish.cpp position.o: position.cpp position.h gxx -c position.cpp nbrhood.o: nbrhood.cpp nbrhood.h gxx -c nbrhood.cpp utils.o: utils.cpp utils.h gxx -c utils.cpp randgen.o: randgen.cpp randgen.h gxx -c randgen.cpp simulate.o: simulate.cpp simulate.h gxx -c simulate.cpp display.o: display.cpp display.h gxx -c display.cpp