quote-bot/makefile

47 lines
1.1 KiB
Makefile
Raw Normal View History

INLINE_SQLITE ?= 0
CC ?= gcc
WARN := -W -Wall -Wextra -pedantic -pedantic-errors \
2021-03-08 23:16:14 -05:00
-Wcast-qual -Wconversion \
-Wdisabled-optimization \
-Werror -Wfloat-equal -Wformat=2 \
-Wformat-nonliteral -Wformat-security \
-Wformat-y2k \
-Wimport -Winit-self -Winline \
-Winvalid-pch \
-Wmissing-field-initializers -Wmissing-format-attribute \
-Wmissing-include-dirs -Wmissing-noreturn \
-Wpointer-arith \
2021-03-08 23:16:14 -05:00
-Wredundant-decls \
-Wshadow -Wstack-protector \
-Wstrict-aliasing=2 -Wswitch-default \
-Wswitch-enum \
-Wunreachable-code -Wunused \
-Wunused-parameter \
-Wvariadic-macros \
-Wwrite-strings
#-Wpacked -Wpadded
CFLAGS += -ggdb -O0 -std=c99 $(WARN)
CFLAGS += -I.
LDFLAGS += -lpthread -lircclient -ldl
SRC = $(wildcard *.c)
OBJ = $(SRC:.c=.o)
ifeq ($(INLINE_SQLITE),0)
TMP := $(OBJ)
OBJ := $(filter-out sqlite3.o,$(TMP))
LDFLAGS += -lsqlite3
endif
2021-03-09 01:39:19 -05:00
all: spammer
sqlite3.o: sqlite3.c
$(CC) -c $< -o $@ $(LDFLAGS)
2021-03-09 01:39:19 -05:00
spammer: $(OBJ)
2021-03-08 23:16:14 -05:00
$(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS)
clean:
2021-03-09 01:39:19 -05:00
$(RM) -rf spammer db a.out *.o *.db *.sqlite3