temperature-alarm/iot/Makefile
2025-04-04 10:14:24 +02:00

8 lines
225 B
Makefile

FILES=main.c brokers/mqtt.c brokers/amqp.c devices/temperature.c devices/display.c devices/buzzer.c device_id.c
# libgpiod version must be < 2.0
all: $(FILES)
$(CC) -lmosquitto -lrabbitmq -lpthread -li2c -lgpiod $(FILES)