選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Makefile 278B

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