diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-07-11 07:04:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-11 07:04:30 -0400 |
| commit | fb4516cabb652774ce60e0683bda1af88cc2d09f (patch) | |
| tree | 7d100b11d2399ca467ce3be4a38e08695eb2bca2 /backend/Makefile | |
| download | decky-lsfg-vk-fb4516cabb652774ce60e0683bda1af88cc2d09f.tar.gz decky-lsfg-vk-fb4516cabb652774ce60e0683bda1af88cc2d09f.zip | |
Initial commit
Diffstat (limited to 'backend/Makefile')
| -rw-r--r-- | backend/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
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 |
