rename executable to server

This commit is contained in:
SimonFJ20 2025-03-05 11:57:53 +01:00
parent a38c518569
commit 18170b5364

View File

@ -38,9 +38,9 @@ O_FILES = $(patsubst src/%.c,build/%.o,$(C_FILES))
CC = gcc
all: build_dir runtime
all: build_dir server
runtime: $(O_FILES)
server: $(O_FILES)
$(CC) -o build/$@ $^ $(F_FLAGS) $(OPTIMIZATION) $(L_FLAGS)
build/%.o: src/%.c $(HEADERS)