Fix errors on linux

This commit is contained in:
ReiMerc 2023-02-09 13:46:06 +01:00
parent 603ab98a14
commit 3c6bd4dfc3
2 changed files with 5 additions and 5 deletions

View File

@ -6,14 +6,14 @@ HEADERS = $(wildcard *.h)
all: compile_flags.txt server all: compile_flags.txt server
server: main.o linux.o server: main.o linux.o
gcc $^ -o $@ gcc $^ -o $@
%.o: %.c $(HEADERS) %.o: %.c $(HEADERS)
gcc $< -c -o $@ $(CFLAGS) gcc $< -c -o $@ $(CFLAGS)
clean: clean:
rm -rf *.o server client rm -rf *.o server client
compile_flags.txt: compile_flags.txt:
echo -xc $(CFLAGS) | sed 's/\s\+/\n/g' > compile_flags.txt echo -xc $(CFLAGS) | sed 's/\s\+/\n/g' > compile_flags.txt

View File

@ -1,6 +1,6 @@
#include "native.h" #include "native.h"
void init_socket(void) void init_sockets(void)
{ {
} }