Here it is!<br>(At least, I think it is...)<br><br><br>--- /dev/null&nbsp;&nbsp;&nbsp; 2007-09-25 19:12:13.000000000 -0700<br>+++ user/tintin/Makefile&nbsp;&nbsp;&nbsp; 2007-09-28 11:07:44.000000000 -0700<br>@@ -0,0 +1,22 @@<br>+# Makefile for tintin++
<br>+<br>+.PHONY: all clean romfs<br>+<br>+all: .compiled<br>+<br>+.configured:<br>+&nbsp;&nbsp;&nbsp; cd src &amp;&amp; ./configure --prefix=/usr --host=${CROSS}<br>+&nbsp;&nbsp;&nbsp; touch $@<br>+<br>+.compiled: .configured<br>+&nbsp;&nbsp;&nbsp; $(MAKE) -C src<br>
+&nbsp;&nbsp;&nbsp; touch $@<br>+<br>+clean:<br>+&nbsp;&nbsp;&nbsp; -test -f src/Makefile &amp;&amp; $(MAKE) -C src clean distclean<br>+&nbsp;&nbsp;&nbsp; rm -f .configured .compiled<br>+<br>+distclean: clean<br>+<br>+romfs: .compiled<br>+&nbsp;&nbsp;&nbsp; $(ROMFSINST) ./src/tt++ /bin/tt++
<br>