xref: /DragonOS/kernel/src/syscall/Makefile (revision 2dbef7859f0af395ccec348f17cf0b79ed56e003)
1SRC = $(wildcard *.c)
2OBJ = $(SRC:.c=.o)
3CFLAGS += -I .
4
5.PHONY: all
6
7all: $(OBJ)
8
9%.o: %.c
10	$(CC) $(CFLAGS) -c $< -o $@
11