summaryrefslogtreecommitdiff
path: root/c-structs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'c-structs/Makefile')
-rw-r--r--c-structs/Makefile13
1 files changed, 13 insertions, 0 deletions
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 *