bcssocket/Makefile

40 lines
1.2 KiB
Makefile

CC = gcc
CCFLAGS = -Wall -std=c99 -pedantic -g
CLIENT=client
SERVER=server
ERROR=errors.o
CHALLENGE=challenges.o
RANDOM=random.o
SOCKETS=sockets.o
TMP := $(shell mktemp)
all: $(ERROR) $(CHALLENGE) $(RANDOM) $(SOCKETS) $(CLIENT) $(SERVER)
$(SERVER): server.c challenges.c errors.c sockets.c include/errors.h include/challenges.h include/server.h include/challengesLib.h include/sockets.h
$(CC) $(CCFLAGS) server.c -o server challenges.o errors.o random.o sockets.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 sockets.c include/errors.h include/client.h include/sockets.h
$(CC) $(CCFLAGS) client.c -o client errors.o sockets.o
%.o: %.c
$(CC) $(CCFLAGS) -I./include -c $<
clean:
rm -rf $(ERROR) $(CHALLENGE) $(CLIENT) $(SERVER) $(RANDOM) $(SOCKETS)
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 .
cleanTest:
rm -rf PVS-Studio.log report.tasks strace_out
.PHONY: all clean test cleanTest