aboutsummaryrefslogblamecommitdiff
path: root/02_process_init/Makefile
blob: db04941d98d7b0a46539807600ece2e136f31c05 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


                                    


                       





                           

              

                   
# Copyright (c) 2020 Johannes Stoelp

show: entry
	./entry 1 2 3 4

entry: entry.S entry.c
	gcc -o $@         \
	    -g -O0        \
	    -Wall -Wextra \
	    -I ../include \
	    -nostdlib     \
	    -static       \
	    $^

clean:
	rm -f entry