mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Add simple myapp application is a C app that prints hello world and exit. Add devtool test for that this app to the workspace, build and reset it. (From OE-Core rev: 2ec513c00ab2ae0f7df631d32f8f248446c90184) Signed-off-by: Aníbal Limón <limon.anibal@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
131 B
131 B
all: myapp
myapp: myapp.o $(CC) $(LDFLAGS) $< -o $@
myapp.o: myapp.c $(CC) $(CFLAGS) -c $< -o $@
clean: rm -rf myapp.o myapp