9 lines
98 B
Makefile

CFLAGS += -I .
all: syscall.o
syscall.o: syscall.c
$(CC) $(CFLAGS) -c syscall.c -o syscall.o