mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-10 01:01:33 +00:00
restore portable Makefiles
This commit is contained in:
parent
26e45e41ed
commit
cc65e91eeb
@ -1,7 +0,0 @@
|
|||||||
all: libexamplemutator.so
|
|
||||||
|
|
||||||
libexamplemutator.so:
|
|
||||||
$(CC) $(CFLAGS) -D_FORTIFY_SOURCE=2 -O3 -fPIC -shared -g -I ../../include example.c -o libexamplemutator.so
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -rf libexamplemutator.so
|
|
@ -1,2 +1,7 @@
|
|||||||
all:
|
all: libexamplemutator.so
|
||||||
@echo please use GNU make, thanks!
|
|
||||||
|
libexamplemutator.so:
|
||||||
|
$(CC) $(CFLAGS) -D_FORTIFY_SOURCE=2 -O3 -fPIC -shared -g -I ../../include example.c -o libexamplemutator.so
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf libexamplemutator.so
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
#
|
|
||||||
# american fuzzy lop++ - libcompcov
|
|
||||||
# --------------------------------
|
|
||||||
#
|
|
||||||
# Written by Andrea Fioraldi <andreafioraldi@gmail.com>
|
|
||||||
#
|
|
||||||
# Copyright 2019-2020 Andrea Fioraldi. All rights reserved.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at:
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
|
|
||||||
PREFIX ?= /usr/local
|
|
||||||
HELPER_PATH = $(PREFIX)/lib/afl
|
|
||||||
DOC_PATH ?= $(PREFIX)/share/doc/afl
|
|
||||||
MAN_PATH ?= $(PREFIX)/man/man8
|
|
||||||
|
|
||||||
VERSION = $(shell grep '^\#define VERSION ' ../config.h | cut -d '"' -f2)
|
|
||||||
|
|
||||||
CFLAGS ?= -O3 -funroll-loops -I ../../include/
|
|
||||||
CFLAGS += -Wall -Wno-unused-result -D_FORTIFY_SOURCE=2 -g -Wno-pointer-sign
|
|
||||||
LDFLAGS += -ldl
|
|
||||||
|
|
||||||
all: libcompcov.so
|
|
||||||
|
|
||||||
libcompcov.so: libcompcov.so.c ../../config.h
|
|
||||||
$(CC) $(CFLAGS) -shared -fPIC $< -o ../../$@ $(LDFLAGS)
|
|
||||||
|
|
||||||
.NOTPARALLEL: clean
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *.o *.so *~ a.out core core.[1-9][0-9]*
|
|
||||||
rm -f ../../libcompcov.so compcovtest
|
|
||||||
|
|
||||||
compcovtest: compcovtest.cc
|
|
||||||
$(CXX) -std=c++11 $< -o $@
|
|
||||||
|
|
||||||
install: all
|
|
||||||
install -m 755 ../../libcompcov.so $${DESTDIR}$(HELPER_PATH)
|
|
||||||
install -m 644 -T README.md $${DESTDIR}$(DOC_PATH)/README.compcov.md
|
|
||||||
|
|
@ -1,2 +1,44 @@
|
|||||||
all:
|
#
|
||||||
@echo please use GNU make, thanks!
|
# american fuzzy lop++ - libcompcov
|
||||||
|
# --------------------------------
|
||||||
|
#
|
||||||
|
# Written by Andrea Fioraldi <andreafioraldi@gmail.com>
|
||||||
|
#
|
||||||
|
# Copyright 2019-2020 Andrea Fioraldi. All rights reserved.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at:
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
|
||||||
|
PREFIX ?= /usr/local
|
||||||
|
HELPER_PATH = $(PREFIX)/lib/afl
|
||||||
|
DOC_PATH ?= $(PREFIX)/share/doc/afl
|
||||||
|
MAN_PATH ?= $(PREFIX)/man/man8
|
||||||
|
|
||||||
|
VERSION = $(shell grep '^\#define VERSION ' ../config.h | cut -d '"' -f2)
|
||||||
|
|
||||||
|
CFLAGS ?= -O3 -funroll-loops -I ../../include/
|
||||||
|
CFLAGS += -Wall -Wno-unused-result -D_FORTIFY_SOURCE=2 -g -Wno-pointer-sign
|
||||||
|
LDFLAGS += -ldl
|
||||||
|
|
||||||
|
all: libcompcov.so
|
||||||
|
|
||||||
|
libcompcov.so: libcompcov.so.c ../../config.h
|
||||||
|
$(CC) $(CFLAGS) -shared -fPIC $< -o ../../$@ $(LDFLAGS)
|
||||||
|
|
||||||
|
.NOTPARALLEL: clean
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.o *.so *~ a.out core core.[1-9][0-9]*
|
||||||
|
rm -f ../../libcompcov.so compcovtest
|
||||||
|
|
||||||
|
compcovtest: compcovtest.cc
|
||||||
|
$(CXX) -std=c++11 $< -o $@
|
||||||
|
|
||||||
|
install: all
|
||||||
|
install -m 755 ../../libcompcov.so $${DESTDIR}$(HELPER_PATH)
|
||||||
|
install -m 644 -T README.md $${DESTDIR}$(DOC_PATH)/README.compcov.md
|
||||||
|
|
||||||
|
26
src/third_party/libradamsa/GNUmakefile
vendored
26
src/third_party/libradamsa/GNUmakefile
vendored
@ -1,26 +0,0 @@
|
|||||||
CUR_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
||||||
|
|
||||||
all: libradamsa.so
|
|
||||||
|
|
||||||
# These can be overriden:
|
|
||||||
CFLAGS ?= -march=native $(CFLAGS_FLTO)
|
|
||||||
|
|
||||||
# These are required: (otherwise radamsa gets very very slooooow)
|
|
||||||
CFLAGS += -O3 -funroll-loops
|
|
||||||
|
|
||||||
libradamsa.so: libradamsa.a
|
|
||||||
$(CC) $(CFLAGS) -shared libradamsa.a -o libradamsa.so
|
|
||||||
|
|
||||||
libradamsa.a: libradamsa.c radamsa.h
|
|
||||||
@echo " ***************************************************************"
|
|
||||||
@echo " * Compiling libradamsa, wait some minutes (~3 on modern CPUs) *"
|
|
||||||
@echo " ***************************************************************"
|
|
||||||
$(CC) -fPIC $(CFLAGS) -I $(CUR_DIR) -o libradamsa.a -c libradamsa.c
|
|
||||||
|
|
||||||
test: libradamsa.a libradamsa-test.c
|
|
||||||
$(CC) $(CFLAGS) -I $(CUR_DIR) -o libradamsa-test libradamsa-test.c libradamsa.a
|
|
||||||
./libradamsa-test libradamsa-test.c | grep "library test passed"
|
|
||||||
rm /tmp/libradamsa-*.fuzz
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f libradamsa.a libradamsa.so libradamsa-test
|
|
28
src/third_party/libradamsa/Makefile
vendored
28
src/third_party/libradamsa/Makefile
vendored
@ -1,2 +1,26 @@
|
|||||||
all:
|
CUR_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
||||||
@echo please use GNU make, thanks!
|
|
||||||
|
all: libradamsa.so
|
||||||
|
|
||||||
|
# These can be overriden:
|
||||||
|
CFLAGS ?= -march=native $(CFLAGS_FLTO)
|
||||||
|
|
||||||
|
# These are required: (otherwise radamsa gets very very slooooow)
|
||||||
|
CFLAGS += -O3 -funroll-loops
|
||||||
|
|
||||||
|
libradamsa.so: libradamsa.a
|
||||||
|
$(CC) $(CFLAGS) -shared libradamsa.a -o libradamsa.so
|
||||||
|
|
||||||
|
libradamsa.a: libradamsa.c radamsa.h
|
||||||
|
@echo " ***************************************************************"
|
||||||
|
@echo " * Compiling libradamsa, wait some minutes (~3 on modern CPUs) *"
|
||||||
|
@echo " ***************************************************************"
|
||||||
|
$(CC) -fPIC $(CFLAGS) -I $(CUR_DIR) -o libradamsa.a -c libradamsa.c
|
||||||
|
|
||||||
|
test: libradamsa.a libradamsa-test.c
|
||||||
|
$(CC) $(CFLAGS) -I $(CUR_DIR) -o libradamsa-test libradamsa-test.c libradamsa.a
|
||||||
|
./libradamsa-test libradamsa-test.c | grep "library test passed"
|
||||||
|
rm /tmp/libradamsa-*.fuzz
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f libradamsa.a libradamsa.so libradamsa-test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user