reboot_temperature/Makefile
aixiao bd585efe7d 增加进程优先级
增加正确日志输出
2021-08-05 11:22:18 +08:00

13 lines
245 B
Makefile

CROSS_COMPILE ?=
CC := $(CROSS_COMPILE)gcc
CFLAGS += -g -O2 -Wall -L../libini -I../libini -fno-builtin
LIB += -lini -static
BIN = reboot_temperature
all: reboot_temperature.o
$(CC) $(CFLAGS) $^ -o $(BIN) $(LIB)
clean:
rm -rf *.o
rm $(BIN)