aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Tay <nick@windblume.net>2022-05-18 00:49:24 +1000
committerNicholas Tay <nick@windblume.net>2022-05-18 00:49:24 +1000
commit28941f769345fc8f1c6466ca95eb01262106970b (patch)
tree5bee8f1173cf7621af93801f3f1502e7fbb129c7 /Makefile
parentf5b4c235be20d76a3d86a94554ba0b0098cf1fc1 (diff)
downloadclak-28941f769345fc8f1c6466ca95eb01262106970b.tar.gz
clak-28941f769345fc8f1c6466ca95eb01262106970b.tar.bz2
clak-28941f769345fc8f1c6466ca95eb01262106970b.zip
Fix indent/styling
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index bc2e86a..1fdf54f 100644
--- a/Makefile
+++ b/Makefile
@@ -5,16 +5,16 @@ CC = gcc
CFLAGS += -std=c99 -Wall -Wextra -Wshadow -Werror
ifeq ($(OS),Windows_NT)
- LDLIBS = -lWinmm
- PLATFORM = win32
+ LDLIBS = -lWinmm
+ PLATFORM = win32
else
- UNAME_S := $(shell uname)
- ifeq ($(UNAME_S),Linux)
- PLATFORM = linux
+ UNAME_S := $(shell uname)
+ ifeq ($(UNAME_S),Linux)
+ PLATFORM = linux
PKG_CONF_LIBS = sdl2 SDL2_mixer x11 xi
CFLAGS += `pkg-config --cflags $(PKG_CONF_LIBS)`
LDLIBS += `pkg-config --libs $(PKG_CONF_LIBS)`
- endif
+ endif
endif
default: $(NAME)