bcssocket/Makefile

34 lines
869 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
$(CC) $(CCFLAGS) server.c -o server challenges.o errors.o
objcopy --add-section .RUN_ME="$(TMP)" --set-section-flags .mydata=noload,readonly server
rm "$(TMP)"
$(CLIENT): client.c errors.c include/errors.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