mirror of
https://github.com/WCBROW01/zblock.git
synced 2025-12-10 19:58:05 -05:00
12 lines
294 B
Makefile
12 lines
294 B
Makefile
CFLAGS = -I/usr/local/include -Ipostgresql -Wall -Wextra -std=gnu11 -O2
|
|
LDFLAGS = -L/usr/local/lib -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) zblock
|