FILES = fork filecreate execve waitpid ptrace_dummy ptrace sigaction ports getdir sysctl

all: $(FILES)

% : %.asm
	fasm $<
	ld -o $@ ../common.o $@.o
	rm -f $@.o
clean:
	rm -f *~ *.txt $(FILES)
