mirror of
https://github.com/WCBROW01/zblock.git
synced 2025-12-12 04:28:07 -05:00
12 lines
244 B
Makefile
12 lines
244 B
Makefile
CFLAGS = -Wall -Wextra -std=gnu11 -O2
|
|
LDFLAGS = -lpthread -lcurl -lmrss -lpq
|
|
|
|
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
|