From fb4516cabb652774ce60e0683bda1af88cc2d09f Mon Sep 17 00:00:00 2001 From: Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> Date: Fri, 11 Jul 2025 07:04:30 -0400 Subject: Initial commit --- backend/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 backend/Makefile (limited to 'backend/Makefile') diff --git a/backend/Makefile b/backend/Makefile new file mode 100644 index 0000000..a1e5dc5 --- /dev/null +++ b/backend/Makefile @@ -0,0 +1,14 @@ +# This is the default target, which will be built when +# you invoke make +.PHONY: all +all: hello + +# This rule tells make how to build hello from hello.cpp +hello: + mkdir -p ./out + gcc -o ./out/hello ./src/main.c + +# This rule tells make to delete hello and hello.o +.PHONY: clean +clean: + rm -f hello \ No newline at end of file -- cgit v1.2.3