added wip fuzzer, fixed alot of memory leaks with wayland
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
This commit is contained in:
parent
e41dbd43c1
commit
3e49278a15
5 changed files with 167 additions and 63 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue