all: hello-asm-syscall hello-asm-libc

hello-asm-syscall: hello-asm-syscall.s
	gcc -nostdlib -static -o hello-asm-syscall hello-asm-syscall.s

hello-asm-libc: hello-asm-libc.s
	gcc -static -o hello-asm-libc hello-asm-libc.s

clean:
	rm -f hello-asm-syscall hello-asm-libc
