about summary refs log tree commit diff stats
path: root/dev/c/src/fork/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dev/c/src/fork/Makefile')
-rw-r--r--dev/c/src/fork/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/dev/c/src/fork/Makefile b/dev/c/src/fork/Makefile
new file mode 100644
index 0000000..a737794
--- /dev/null
+++ b/dev/c/src/fork/Makefile
@@ -0,0 +1,11 @@
+
+progs=fork fork_exec
+all: $(progs)
+
+fork: fork.c
+
+fork_exec: fork_exec.c
+
+
+clean:
+	rm $(progs)