2022-07-25 11:05:30 +08:00

9 lines
96 B
Makefile

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