35 lines
931 B
Makefile
35 lines
931 B
Makefile
CC = gcc
|
|
CCFLAGS = -Wall -std=c99 -pedantic -g
|
|
|
|
CLIENT=client
|
|
SERVER=server
|
|
ERROR=errors.o
|
|
CHALLENGE=challenges.o
|
|
|
|
TMP := $(shell mktemp)
|
|
|
|
all: $(ERROR) $(CHALLENGE) $(CLIENT) $(SERVER)
|
|
|
|
$(SERVER): server.c challenges.c errors.c include/errors.h include/challenges.h include/server.h
|
|
$(CC) $(CCFLAGS) server.c -o server challenges.o errors.o
|
|
objcopy --add-section .RUN_ME="$(TMP)" --set-section-flags .mydata=noload,readonly server
|
|
strip --strip-debug server
|
|
rm "$(TMP)"
|
|
|
|
$(CLIENT): client.c errors.c include/errors.h include/client.h
|
|
$(CC) $(CCFLAGS) client.c -o client errors.o
|
|
|
|
%.o: %.c
|
|
$(CC) $(CCFLAGS) -I./include -c $<
|
|
|
|
clean:
|
|
rm -rf $(ERROR) $(CHALLENGE) $(CLIENT) $(SERVER)
|
|
|
|
test:
|
|
pvs-studio-analyzer trace -- make
|
|
pvs-studio-analyzer analyze
|
|
plog-converter -a '64:1,2,3;GA:1,2,3;OP:1,2,3' -t tasklist -o report.tasks PVS-Studio.log
|
|
cppcheck --quiet --enable=all --force --inconclusive .
|
|
|
|
.PHONY: all clean test
|