From 976183462c22191a1ef6f91ccd7eae084ffd0a81 Mon Sep 17 00:00:00 2001 From: DiffieHellman Date: Fri, 17 Mar 2023 21:42:26 +1100 Subject: replaced list implementation completely as license is unclear and other improvements --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index becb260..db6c669 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,11 @@ CC = gcc RES = /usr/share/nyancat BIN = /usr/bin/nyancat -LIBS = -lSDL2 -lSDL2_image -lSDL2_mixer -lm -CFLAGS = -O3 -march=native -flto -Wall +LIBS = -lSDL2 -lSDL2_image -lSDL2_mixer -lm -lX11 -lXrandr +CFLAGS = -O3 -march=native -flto -Wall #-g -fsanitize=address OBJ = nyan.o HEADERS = list.h draw.h globals.h - %.o: %.c $(HEADERS) $(CC) -c -o $@ $< $(CFLAGS) $(LIBS) -- cgit v1.2.3