aboutsummaryrefslogtreecommitdiff
path: root/02_process_init/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '02_process_init/Makefile')
-rw-r--r--02_process_init/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/02_process_init/Makefile b/02_process_init/Makefile
new file mode 100644
index 0000000..6e1f512
--- /dev/null
+++ b/02_process_init/Makefile
@@ -0,0 +1,18 @@
+# Copyright (c) 2020 Johannes Stoelp
+
+show: entry
+ #gdb -q --batch -ex 'starti' -ex 'x/g $$rsp' -ex 'x/s *(char**)($$rsp+8)' ./$^
+ ./entry 1 2 3 4
+
+entry: entry.S entry.c
+ gcc -o $@ \
+ -I ../include \
+ -Wall -Wextra \
+ -static \
+ -nostartfiles -nodefaultlibs \
+ -g -O0 \
+ $^
+
+
+clean:
+ rm -f entry