# Rockchip sample Makefile

SRCS := $(wildcard *.c)
OBJS  := $(SRCS:%.c=%.o)

.PHONY : clean

clean:
	@rm -f $(OBJS)

