1all: 2 $(CC) -no-pie test.c -o test 3 $(CC) -fPIC -shared read_into_rdi.c -o read_into_rdi.so 4 5clean: 6 rm -rf in out test read_into_rdi.so 7