diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2019-07-21 19:28:10 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2019-07-21 19:28:10 +0000 |
commit | fb25a0de07a7009b18c818c9dab98c83e4bec6ee (patch) | |
tree | cb06f51061ef61a738860e20e200acca1cfa1c17 /sysutils/boot-extract/files/patch-Makefile | |
parent | dns/knot2: upgrade 2.8.1 -> 2.8.3 (diff) |
New port: sysutils/boot-extract
Utility to extract kernel and ramdisk from
an Android boot or recovery image file
WWW: https://github.com/csimmonds/boot-extract
PR: 239206
Submitted by: Martin Filla <freebsd@sysctl.cz>
Notes
Notes:
svn path=/head/; revision=507065
Diffstat (limited to 'sysutils/boot-extract/files/patch-Makefile')
-rw-r--r-- | sysutils/boot-extract/files/patch-Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sysutils/boot-extract/files/patch-Makefile b/sysutils/boot-extract/files/patch-Makefile new file mode 100644 index 000000000000..3088ed5edab4 --- /dev/null +++ b/sysutils/boot-extract/files/patch-Makefile @@ -0,0 +1,16 @@ +--- Makefile.orig 2017-11-25 09:25:52 UTC ++++ Makefile +@@ -1,4 +1,5 @@ + ++ + CFLAGS=-Wall + PROGS=boot-extract + +@@ -10,3 +11,7 @@ clean: + rm -f *.o + rm -f $(PROGS) + ++install: boot-extract ++ ++.PHONY: all clean install ++ |