bcssocket/Makefile

36 lines
1004 B
Makefile

CC = gcc
CCFLAGS = -Wall -std=c99 -pedantic -g
CLIENT=client
SERVER=server
ERROR=errors.o
CHALLENGE=challenges.o
RANDOM=random.o
TMP := $(shell mktemp)
all: $(ERROR) $(CHALLENGE) $(RANDOM) $(CLIENT) $(SERVER)
$(SERVER): server.c challenges.c errors.c include/errors.h include/challenges.h include/server.h include/challengesLib.h
$(CC) $(CCFLAGS) server.c -o server challenges.o errors.o random.o -lm
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) $(RANDOM)
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