diff --git a/Makefile b/Makefile index 6205685..0dc2d31 100644 --- a/Makefile +++ b/Makefile @@ -27,14 +27,17 @@ $(OBJDIR)/%.o: $(SRCDIR)/%.c @ $(CC) $(CFLAGS) -c $^ -o $@ +# Clean all artifacts and rebuild the whole thing all: clean $(OBJS) build +# Run fuzz .PHONY fuzz: all fuzz: @ export AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1 @ export AFL_SKIP_CPUFREQ=1 afl-fuzz -i examples/ -o out -m none -d -- ./build/noja run @@ +# Link all object files .PHONY build: all build: @ echo !==== LINKING