Commit 1eef1655 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Initial commit

parents
all:
tar xf m4-1.4.18.tar.xz
cd m4-1.4.18 && ./configure --build=$(CLFS_TARGET) --prefix=/usr
$(MAKE) -C m4-1.4.18
if [[ ! "$(BUILD_OPTIONS)" =~ no-tests ]] ; then \
$(MAKE) -C m4-1.4.18 check ; \
fi
$(MAKE) -C m4-1.4.18 install
rm -rf m4-1.4.18
temporary:
tar xf m4-1.4.18.tar.xz
cd m4-1.4.18 && ./configure --prefix=/tools
$(MAKE) -C m4-1.4.18
$(MAKE) -C m4-1.4.18 install
rm -rf m4-1.4.18
<project name="m4">
<target name="cross-m4">
<property name="makedir" value="${builddir}/m4-1.4.18"/>
<exec executable="tar" failonerror="true">
<arg line="xf packages/m4/m4-1.4.18.tar.xz -C ${builddir}"/>
</exec>
<exec executable="./configure" dir="${makedir}" failonerror="true">
<arg line="--prefix=${sysrootdir}/cross-tools"/>
</exec>
<exec executable="make" dir="${makedir}" failonerror="true"/>
<exec executable="make" dir="${makedir}" failonerror="true">
<arg line="install"/>
</exec>
<delete dir="${makedir}"/>
</target>
</project>
bin
/usr/bin/.*
info
/usr/share/info/.*
man
/usr/share/man/.*
temporary
/tools/.*
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment