aboutsummaryrefslogtreecommitdiffhomepage
path: root/linux/src/Makefile
diff options
context:
space:
mode:
authorjohannst <johannst@users.noreply.github.com>2022-11-13 14:13:35 +0000
committerjohannst <johannst@users.noreply.github.com>2022-11-13 14:13:35 +0000
commit2dfbc312e6ccb88f838170d8e777d48aacde2ff5 (patch)
treea4a83435e10a7ad38f454a30cbd7b30640cd1a7d /linux/src/Makefile
parentccbbcafbc7337c8d7a785b9034716618dce36e4d (diff)
downloadnotes-2dfbc312e6ccb88f838170d8e777d48aacde2ff5.tar.gz
notes-2dfbc312e6ccb88f838170d8e777d48aacde2ff5.zip
deploy: 026d679006e5d470bacdc74bb3082072edf31e36
Diffstat (limited to 'linux/src/Makefile')
-rw-r--r--linux/src/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/linux/src/Makefile b/linux/src/Makefile
new file mode 100644
index 0000000..9b6e47a
--- /dev/null
+++ b/linux/src/Makefile
@@ -0,0 +1,10 @@
+SRC = event.c
+BIN = $(SRC:.c=)
+
+all: $(BIN)
+
+%: %.c
+ bash $<
+
+clean:
+ $(RM) $(BIN)