aboutsummaryrefslogblamecommitdiff
path: root/02_process_init/Makefile
blob: 430b0a9d220c4753cae3dc00a35ce96f7255d6aa (plain) (tree)
1
2
3
4
5
6
7
8
9


                                    



                                          
                                          
                                          
                                          
                                          
                                          

              

                   
# 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                \
	    -nostartfiles -nodefaultlibs \
	    -static                      \
	    $^

clean:
	rm -f entry