fix some uninitialized values
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-04-27 08:54:13 +09:00
commit a78b7b6762
4 changed files with 9 additions and 6 deletions

View file

@ -1,7 +1,7 @@
CC = gcc
CFLAGS = `freetype-config --cflags`
CFLAGS = `pkg-config --cflags freetype2` -I../include
LDFLAGS =
LIBS = `freetype-config --libs`
LIBS = `pkg-config --libs freetype2`
.PHONY: all clean
.SUFFIXES: .c .o
@ -9,7 +9,7 @@ LIBS = `freetype-config --libs`
all: fuzzer font
fuzzer: fuzzer.o
$(CC) -g -L../src/ -Wl,-R../src -lMw -o $@ fuzzer.o
$(CC) -g -L../src/ -Wl,-R../src -o $@ fuzzer.o -lMw
font: font.o
$(CC) $(LDFLAGS) -o $@ font.o $(LIBS)