mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 00:01:33 +00:00
The original code is: https://github.com/RICSecLab/AFLplusplus-cs/tree/retrage/coresight-mode-pr Signed-off-by: Akira Moroo <retrage01@gmail.com>
22 lines
490 B
Makefile
22 lines
490 B
Makefile
#!/usr/bin/env make
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright 2021 Ricerca Security, Inc. All rights reserved.
|
|
|
|
all:
|
|
@echo trying to use GNU make...
|
|
@gmake all || echo please install GNUmake
|
|
|
|
build:
|
|
@echo trying to use GNU make...
|
|
@gmake build || echo please install GNUmake
|
|
|
|
patch:
|
|
@echo trying to use GNU make...
|
|
@gmake patch || echo please install GNUmake
|
|
|
|
clean:
|
|
@echo trying to use GNU make...
|
|
@gmake clean || echo please install GNUmake
|
|
|
|
.PHONY: all build patch clean
|