added wip fuzzer, fixed alot of memory leaks with wayland
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
IoIxD 2026-04-16 18:36:42 -07:00
commit 3e49278a15
5 changed files with 167 additions and 63 deletions

View file

@ -6,7 +6,10 @@ LIBS = `freetype-config --libs`
.PHONY: all clean
.SUFFIXES: .c .o
all: font
all: fuzzer font
fuzzer: fuzzer.o
$(CC) -g -L../src/ -Wl,-R../src -lMw -o $@ fuzzer.o
font: font.o
$(CC) $(LDFLAGS) -o $@ font.o $(LIBS)
@ -15,4 +18,4 @@ font: font.o
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -f *.o font
rm -f *.o font fuzzer