all: as asm_library.s -o asm_library.o gcc main_function.c asm_library.o -o asm_library run: all ./asm_library clean: rm -f asm_library.o asm_library