Fix missing libraries

This commit is contained in:
2026-04-26 19:17:06 -04:00
parent 5541aeb799
commit 6fbbdedebe
2 changed files with 2 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
# Compiler and flags
CC = gcc
CFLAGS = -Wall -g
LIBS = -lncurses
LIBS = -lncurses -lm
# Source files
NETPONG_SRC = main.c $(wildcard src/*.c) $(wildcard src/network/*.c)