您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Makefile 269B

123456789
  1. cc = gcc
  2. cflags = -Wall -lmosquitto -lpthread -ldl -I /root/x86/mqtt_install/root/x86/mqtt_install/include -L /root/x86/mqtt_install/root/x86/mqtt_install/lib
  3. main:
  4. $(cc) server-monitor.c -o server-monitor $(cflags)
  5. .phony:clean
  6. clean:
  7. rm *.o server-monitor -fr