Skip to content
Snippets Groups Projects
Commit 110cbb24 authored by Frédéric Dalleau's avatar Frédéric Dalleau
Browse files

Dummy project to exercise ade configure and build

Create this dummy project to exercise ade configure and build.
autogen.sh and configure are mocking the real scripts behavior.
It is also possible to build from a build directory.

Apertis: https://phabricator.apertis.org/T3777



Signed-off-by: default avatarFrédéric Dalleau <frederic.dalleau@collabora.com>
Reviewed-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
Differential Revision: https://phabricator.apertis.org/D6411
parent 36d3d684
No related branches found
No related tags found
No related merge requests found
all: sample.py
clean:
rm -f sample.py
distclean: clean
rm -f Makefile
sample.py:
echo "#!/usr/bin/env python3" > sample.py
echo "print 'sample.py success'" >> sample.py
chmod a+x sample.py
{
"Name":"sample",
"BundleId":"org.apertis.Sample",
"App_Version":"0.1.0"
}
#!/bin/sh
SOURCE=`dirname $0`
TARGET=`pwd`
echo "SOURCE $SOURCE"
echo "TARGET $TARGET"
echo "Generating configure $*"
cp $SOURCE/configure.in $TARGET/configure
#!/bin/sh
SOURCE=`dirname $0`
TARGET=`pwd`
echo "Generating Makefile"
cp $SOURCE/Makefile.in $TARGET/Makefile
touch $TARGET/config.status
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment