Create src folder

Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
This commit is contained in:
Santiago Lo Coco 2021-11-09 10:03:49 -03:00
parent 465b264684
commit 9872bbafde
7 changed files with 15 additions and 15 deletions

View File

@ -3,29 +3,29 @@ CCFLAGS = -Wall -std=c99 -pedantic -g
CLIENT=client CLIENT=client
SERVER=server SERVER=server
ERROR=errors.o ERRORS=errors.o
CHALLENGE=challenges.o CHALLENGES=challenges.o
RANDOM=random.o RANDOM=random.o
SOCKETS=sockets.o SOCKETS=sockets.o
TMP := $(shell mktemp) TMP := $(shell mktemp)
all: $(ERROR) $(CHALLENGE) $(RANDOM) $(SOCKETS) $(CLIENT) $(SERVER) all: $(ERRORS) $(CHALLENGES) $(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 $(SERVER): src/server.c src/challenges.c src/errors.c src/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 $(CC) $(CCFLAGS) src/server.c -o server $(CHALLENGES) $(ERRORS) $(RANDOM) $(SOCKETS) -lm
objcopy --add-section .RUN_ME="$(TMP)" --set-section-flags .mydata=noload,readonly server objcopy --add-section .RUN_ME="$(TMP)" --set-section-flags .mydata=noload,readonly server
strip --strip-debug server strip --strip-debug server
rm "$(TMP)" rm "$(TMP)"
$(CLIENT): client.c errors.c sockets.c include/errors.h include/client.h include/sockets.h $(CLIENT): src/client.c src/errors.c src/sockets.c include/errors.h include/client.h include/sockets.h
$(CC) $(CCFLAGS) client.c -o client errors.o sockets.o $(CC) $(CCFLAGS) src/client.c -o client $(ERRORS) $(SOCKETS)
%.o: %.c %.o: src/%.c
$(CC) $(CCFLAGS) -I./include -c $< $(CC) $(CCFLAGS) -I./include -c $<
clean: clean:
rm -rf $(ERROR) $(CHALLENGE) $(CLIENT) $(SERVER) $(RANDOM) $(SOCKETS) rm -f $(ERRORS) $(CHALLENGES) $(CLIENT) $(SERVER) $(RANDOM) $(SOCKETS)
test: test:
pvs-studio-analyzer trace -- make pvs-studio-analyzer trace -- make

View File

@ -1,6 +1,6 @@
// This is a personal academic project. Dear PVS-Studio, please check it. // This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include "include/challenges.h" #include "../include/challenges.h"
char genChallenge(FILE * stream, char ** output, challenge_t challenge) { char genChallenge(FILE * stream, char ** output, challenge_t challenge) {
printf("------------- DESAFIO -------------\n"); printf("------------- DESAFIO -------------\n");

View File

@ -1,6 +1,6 @@
// This is a personal academic project. Dear PVS-Studio, please check it. // This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include "include/client.h" #include "../include/client.h"
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
int fd = createSocket(); int fd = createSocket();

View File

@ -1,6 +1,6 @@
// This is a personal academic project. Dear PVS-Studio, please check it. // This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include "include/errors.h" #include "../include/errors.h"
void printError(char * string) { void printError(char * string) {
fprintf(stderr, "%s\n", string); fprintf(stderr, "%s\n", string);

View File

@ -1,6 +1,6 @@
// This is a personal academic project. Dear PVS-Studio, please check it. // This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include "include/random.h" #include "../include/random.h"
static uint32_t m_z = 362436069; static uint32_t m_z = 362436069;
static uint32_t m_w = 521288629; static uint32_t m_w = 521288629;

View File

@ -1,6 +1,6 @@
// This is a personal academic project. Dear PVS-Studio, please check it. // This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include "include/server.h" #include "../include/server.h"
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
int fd = createSocket(); int fd = createSocket();

View File

@ -1,6 +1,6 @@
// This is a personal academic project. Dear PVS-Studio, please check it. // This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include "include/sockets.h" #include "../include/sockets.h"
int createSocket() { int createSocket() {
int fd; int fd;