11 lines
118 B
Makefile
11 lines
118 B
Makefile
# Rockchip sample Makefile
|
|
|
|
SRCS := $(wildcard *.c)
|
|
OBJS := $(SRCS:%.c=%.o)
|
|
|
|
.PHONY : clean
|
|
|
|
clean:
|
|
@rm -f $(OBJS)
|
|
|