commit 49eb863

uint  ·  2026-04-29 14:38:18 +0000 UTC
parent d7b5611
use cc instead of clang, move -I flags to CPPFLAGS
1 files changed,  +3, -3
+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)