> Yep, go ahead and do that. 

It appears that sendmail was configured incorrectly, so my message was
never sent:

Here is a trivial Makefile that should work. I don't want to commit it
without approval, but I am fine doing that if people think it works.
Also, I don't really know what to say on the copyright file either, so I
basically copied what Simon had. I am no whiz at Makefiles, so I am sure
there is an easier way to get what I want from this, but what I have now
does work. type something like "make analog; make" or "make both; make
debug; make" to test it out. I don't know if rm -f is standard make
clean procedure - if not, feel free to correct me.

I can try to get the multiple frame output working also.

nick
# Written by Nicholas Sinnott-Armstrong for the Open Graphics Project.
# Copyright 2006 Nicholas Sinnott-Armstrong.
# This code is GPL. For alternatives, see Traversal Technology and their dual license scheme.
test:
	echo "echo Testing done!" >> run_tests
	echo "#!/bin/bash">>test_all
	cat run_tests >> test_all
	chmod +x test_all
	./test_all
	rm run_tests test_all

analog: analog_monitor.v head0_video_out.v test_analog.v grey2dramp.v
	iverilog grey2dramp.v analog_monitor.v head0_video_out.v test_analog.v -o makeanalog
	echo "./makeanalog" >> run_tests

digital: dvi_monitor.v head0_video_out.v test_dvi_d.v test_dvi_s.v grey2dramp.v
	iverilog grey2dramp.v dvi_monitor.v head0_video_out.v test_dvi_d.v -o makedigital_d
	iverilog grey2dramp.v dvi_monitor.v head0_video_out.v test_dvi_s.v -o makedigital_s
	echo "./makedigital_d;./makedigital_s" >> run_tests

both: analog digital

debug: grey2dramp.v head0_video_out.v head0_video_out_tb.v
	iverilog grey2dramp.v head0_video_out.v head0_video_out_tb.v -o makedebug
	echo "./makedebug" >> run_tests

clean:
	rm -f makeanalog makedigital_d makedigital_s makedebug run_tests test_all *.vcd *.ppm
_______________________________________________
Open-graphics mailing list
[email protected]
http://lists.duskglow.com/mailman/listinfo/open-graphics
List service provided by Duskglow Consulting, LLC (www.duskglow.com)

Reply via email to