summaryrefslogtreecommitdiffstats
path: root/applypatch/Makefile
diff options
context:
space:
mode:
authorSen Jiang <senj@google.com>2016-02-02 09:01:23 +0100
committerSen Jiang <senj@google.com>2016-02-10 00:26:57 +0100
commit696692a3c9fe4bd8879f98f3e85341303f85afd5 (patch)
treed01dfa7f2b65b703ab83fc9e47fed61e67f97d85 /applypatch/Makefile
parentMerge "verifier_test: Suppress the unused parameter warnings." (diff)
downloadandroid_bootable_recovery-696692a3c9fe4bd8879f98f3e85341303f85afd5.tar
android_bootable_recovery-696692a3c9fe4bd8879f98f3e85341303f85afd5.tar.gz
android_bootable_recovery-696692a3c9fe4bd8879f98f3e85341303f85afd5.tar.bz2
android_bootable_recovery-696692a3c9fe4bd8879f98f3e85341303f85afd5.tar.lz
android_bootable_recovery-696692a3c9fe4bd8879f98f3e85341303f85afd5.tar.xz
android_bootable_recovery-696692a3c9fe4bd8879f98f3e85341303f85afd5.tar.zst
android_bootable_recovery-696692a3c9fe4bd8879f98f3e85341303f85afd5.zip
Diffstat (limited to 'applypatch/Makefile')
-rw-r--r--applypatch/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/applypatch/Makefile b/applypatch/Makefile
new file mode 100644
index 000000000..fa6298d46
--- /dev/null
+++ b/applypatch/Makefile
@@ -0,0 +1,32 @@
+# Copyright (C) 2016 The Android Open Source Project
+#
+# 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
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# This file is for building imgdiff in Chrome OS.
+
+CPPFLAGS += -iquote..
+CXXFLAGS += -std=c++11 -O3 -Wall -Werror
+LDLIBS += -lbz2 -lz
+
+.PHONY: all clean
+
+all: imgdiff libimgpatch.a
+
+clean:
+ rm -f *.o imgdiff libimgpatch.a
+
+imgdiff: imgdiff.o bsdiff.o utils.o
+ $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDLIBS) -o $@ $^
+
+libimgpatch.a: imgpatch.o bspatch.o utils.o
+ ${AR} rcs $@ $^