all: as test_library.s -o test_library.o gcc -c libtest.c -o libtest.o ld test_library.o libtest.o -lc --dynamic-linker /lib64/ld-linux-x86-64.so.2 -o test_library clean: rm -f test_library.o libtest.o test_library