mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-13 23:36:49 +00:00
10 lines
120 B
Makefile
10 lines
120 B
Makefile
SRC = $(wildcard *.c)
|
|
OBJ = $(SRC:.c=.o)
|
|
CFLAGS += -I .
|
|
|
|
.PHONY: all
|
|
|
|
all: $(OBJ)
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $< -o $@
|