First version out

It certainly is full of bug but the main goal is done so i'm kinda happy
^^
This commit is contained in:
2023-10-22 21:17:45 +02:00
parent ab380b4671
commit 6c4944f985
2 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,7 @@
.PHONY: clean, mrproper
CC = gcc
CFLAGS = -g -Wall -Wextra -pedantic
LIBS = -lm
all: fisualizer
@ -8,7 +9,7 @@ all: fisualizer
$(CC) $(CFLAGS) -c -o $@ $<
fisualizer: fisualizer.o
$(CC) $(CFLAGS) -o $@ $+
$(CC) $(CFLAGS) -o $@ $+ $(LIBS)
clean:
rm -f *.o core.*