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