commit e8e8cd5
Merge pull request 'use conditional assignment, move -I flags to CPPFLAGS' (#5) from uint23/shinobi:mac-fixes into main Reviewed-on: https://codeberg.org/derivelinux/shinobi/pulls/5
1 files changed,
+3,
-3
M
Makefile
M
Makefile
+3,
-3
1@@ -31,9 +31,9 @@ FMTSRCS = $(SRCS) \
2
3 OBJS = $(SRCS:.c=.o)
4
5-CC = clang
6-CFLAGS = -O2 -Wall -Wextra -pedantic -Isrc -Ibackends
7-CPPFLAGS =
8+CC = cc
9+CFLAGS = -O2 -Wall -Wextra -pedantic
10+CPPFLAGS = -Isrc -Ibackends
11 LDFLAGS = -static
12
13 all: $(BIN)