I've downloaded the source of Alligator ( http://alligator.sf.net )
via the CVS, and I'm trying to figure out how to compile the thing. It
has, as far as I (and find) can tell, no Makefile or Makefile.in, no
./configure or configure.in, no autogen.sh ... infact, the closest
thing I can find to any of this is a single XML file -
Alligator.build, which *looks* like an XMLised Makefile - for example,
it contains the following:
>>>
<target name="build" depends="init">
        <csc target="library" output="${feeds.dll}" debug="${debug}">
            <sources>
                <include name="${src.dir}/Aggregator/Feeds/**/*.cs"/>
            </sources>
        </csc>
        <csc target="exe" output="${console.exe}" debug="${debug}">
            <references>
                <include name="${feeds.dll}"/>
            </references>
            <sources>
                <include name=
                        "${src.dir}/Aggregator/ConsoleClient/*.cs"/>
            </sources>
        </csc>
        <csc target="exe" output="${gtk.exe}" debug="${debug}">
            <references refid="gtk.ref"/>
            <sources>
                <include name=
                        "${src.dir}/Aggregator/GtkClient/**/*.cs"/>
            </sources>
        </csc>
        <copy todir="${bin.dir}">
            <fileset basedir="${res.dir}">
                <include name="*.xml"/>
            </fileset>
        </copy>
   </target>
<<<

What will parse this? Am I missing something obvious here?

--
Lennon Victor Cook
--
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to