From 134f855b537b714eb98bc1e6e1e4790b4d6491a3 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sat, 22 Jun 2024 20:01:14 +0200 Subject: Added writing and reading structs from files --- c-structs/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 c-structs/Makefile (limited to 'c-structs/Makefile') diff --git a/c-structs/Makefile b/c-structs/Makefile new file mode 100644 index 0000000..20694af --- /dev/null +++ b/c-structs/Makefile @@ -0,0 +1,13 @@ +all: write read + +write: + gcc write.c -o write + +read: + gcc read.c -o read + +clean: + -rm write + +tags: + ctags -R * -- cgit v1.2.3