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