diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-24 15:19:45 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-24 15:19:45 -0400 |
commit | 0aa6e65ea6ef044cf877ed6df8f3bf00141e0b23 (patch) | |
tree | dd1f9aa154fe0955274e2900f368b8f7e43634a3 /Makefile | |
parent | window title (diff) | |
download | raycaster-0aa6e65ea6ef044cf877ed6df8f3bf00141e0b23.tar.gz raycaster-0aa6e65ea6ef044cf877ed6df8f3bf00141e0b23.tar.bz2 raycaster-0aa6e65ea6ef044cf877ed6df8f3bf00141e0b23.zip |
i made a swapchain
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |