From e16cf9d7392fb6ba47e9915ba63d0c4692d8ab35 Mon Sep 17 00:00:00 2001 From: Ross Thompson Date: Mon, 10 Jun 2024 16:56:53 -0700 Subject: [PATCH] Added Makefile to compile rvvidaemon --- fpga/rvvidaemon/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 fpga/rvvidaemon/Makefile diff --git a/fpga/rvvidaemon/Makefile b/fpga/rvvidaemon/Makefile new file mode 100644 index 000000000..c1d1d5a1c --- /dev/null +++ b/fpga/rvvidaemon/Makefile @@ -0,0 +1,10 @@ +all: rvvidaemon + +rvvidaemon: rvvidaemon.o + gcc $^ -o rvvidaemon + +%.o:%.c + gcc -c $^ -o $@ + +clean: + rm *.o rvvidaemon