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