Makefile 98 B

12345678
  1. CFLAGS += -I .
  2. all: syscall.o
  3. syscall.o: syscall.c
  4. $(CC) $(CFLAGS) -c syscall.c -o syscall.o