net.make

Make file for the Graph Simulator


 

/*net.make*/
net.out : net.o
      g++ -o net.out net.o
net.o : net.cpp help.h
      g++ -c net.cpp

clean :
      rm *.o net.out

Rate this post

Leave a Reply