# this is a Makefile for the mux4_8 component # final target all : mux4_8.out # first compile mux4_8.e to build mux4_8.net mux4_8.net : mux4_8.e ecomp mux4_8.e -o mux4_8.net # now simulate using greg.run, the greg component in the test circuit mux4_8.out : mux4_8.run mux4_8.net esim < mux4_8.run > mux4_8.out # results of the simulator are now in the file mux4_8.out