blob: 61fd84f5a7084e68b7e506bfb3ce24968a9aa3fd (
plain) (
tree)
|
|
RM := rm -f
CFLAGS = \
-D_FORTIFY_SOURCE=2 \
-D_POSIX_SOURCE=199506 \
-Iinclude \
-O3 \
-Wall \
-Wextra \
-Wformat=2 \
-Wmissing-declarations \
-Wmissing-include-dirs \
-Wnull-dereference \
-Wpedantic \
-Wpointer-arith \
-Wstrict-overflow=5 \
-g \
-o$(@) \
-std=c99
OBJS := \
src/chkpar.o \
src/cpy.o \
src/exi.o \
src/getsum.o \
src/hlp.o \
src/inidat.o \
src/main.o \
src/opn.o \
src/pat.o \
src/red.o
BIN := agbsum
$(BIN): $(OBJS)
$(CC) -o$(BIN) $(OBJS)
$(OBJS): include/agbsum.h
.PHONY: clean install purge
clean:
$(RM) $(OBJS)
purge: clean
$(RM) $(BIN)
install: $(BIN)
mkdir -pm755 "$(BINDIR)"
install -m755 "agbsum" "$(BINDIR)"
|