Files
zblock/Makefile
Will Brown cd90d62b2c Extract feed_info struct and save routine to its own file
Also start creating basic framework for config
2024-11-21 16:18:26 -05:00

12 lines
239 B
Makefile

CFLAGS = -Wall -Wextra -std=gnu11 -O2
LDFLAGS = -lpthread -lcurl -lmrss
SRC = $(wildcard *.c)
OBJ = $(SRC:.c=.o)
zblock: $(OBJ) /usr/local/lib/libdiscord.a
$(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS)
.PHONY: clean
clean: rm -f $(OBJ) linuxbot