CC = gcc
CFLAGS =
EXEC := syscalls bscopy
.PHONY: all clean
all: $(EXEC)
%: %.c
$(CC) $(CFLAGS) -o $@ $^
clean:
rm $(EXEC)