From 940dcc02509d32735bf59a78030822a8d32a46fb Mon Sep 17 00:00:00 2001 From: John Toomey Date: Mon, 22 Jul 2024 11:33:49 +0100 Subject: Move example code to meta-xilinx-demos Signed-off-by: John Toomey Signed-off-by: Mark Hatle --- .../recipes-examples/gpio-demo/files/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 meta-xilinx-demos/recipes-examples/gpio-demo/files/Makefile (limited to 'meta-xilinx-demos/recipes-examples/gpio-demo/files/Makefile') diff --git a/meta-xilinx-demos/recipes-examples/gpio-demo/files/Makefile b/meta-xilinx-demos/recipes-examples/gpio-demo/files/Makefile new file mode 100644 index 00000000..9106be1b --- /dev/null +++ b/meta-xilinx-demos/recipes-examples/gpio-demo/files/Makefile @@ -0,0 +1,14 @@ +APP = gpio-demo + +# Add any other object files to this list below +APP_OBJS = gpio-demo.o + +all: $(APP) + +$(APP): $(APP_OBJS) + $(CC) $(LDFLAGS) -o $@ $(APP_OBJS) $(LDLIBS) + +clean: + -rm -f $(APP) *.elf *.gdb *.o + + -- cgit v1.2.3-54-g00ecf