xref: /DragonOS/kernel/src/common/math/Makefile (revision dfe53cf087ef4c7b6db63d992906b062dc63e93f)
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 $@