summaryrefslogtreecommitdiffstats
path: root/02_exercise/beispiele/fork_example/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '02_exercise/beispiele/fork_example/Makefile')
-rw-r--r--02_exercise/beispiele/fork_example/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/02_exercise/beispiele/fork_example/Makefile b/02_exercise/beispiele/fork_example/Makefile
deleted file mode 100644
index 8f69ed9..0000000
--- a/02_exercise/beispiele/fork_example/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/make
-.SUFFIXES:
-
-CFLAGS = -c -Os -Wall -Werror
-
-%.o: %.c
- $(CC) $(CFLAGS) $^ -o $@
-
-%: %.o
- $(CC) -o $@ $^
-
-all: fork
-
-run: all
- ./fork
-
-clean:
- $(RM) $(RMFILES) fork