summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-04-24 15:19:45 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-04-24 15:19:45 -0400
commit0aa6e65ea6ef044cf877ed6df8f3bf00141e0b23 (patch)
treedd1f9aa154fe0955274e2900f368b8f7e43634a3 /Makefile
parentwindow title (diff)
downloadraycaster-0aa6e65ea6ef044cf877ed6df8f3bf00141e0b23.tar.gz
raycaster-0aa6e65ea6ef044cf877ed6df8f3bf00141e0b23.tar.bz2
raycaster-0aa6e65ea6ef044cf877ed6df8f3bf00141e0b23.zip
i made a swapchain
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dfb9014..b9fd7b8 100644
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,13 @@ CC = gcc
INCFLAGS = -Isrc
-CCFLAGS = -std=c99 -Wall -Wextra -pedantic -O2
+CCFLAGS = -std=gnu99 -Wall -Wextra -pedantic -O2
CCFLAGS += $(INCFLAGS)
LDFLAGS += $(INCFLAGS)
LDFLAGS += -lX11
LDFLAGS += -lm
+LDFLAGS += -lpthread
BIN = bin
APP = $(BIN)/app