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