diff options
author | Sen Jiang <senj@google.com> | 2016-02-10 20:30:20 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-02-10 20:30:20 +0100 |
commit | bca162a98b8e3ccb8400d41c05b80bc1fe847451 (patch) | |
tree | b70bf8c1ca5cbac5770a94ef57282bffebf03709 /applypatch/Makefile | |
parent | Merge "verifier_test: Suppress the unused parameter warnings." (diff) | |
parent | Merge "applypatch: Add a Makefile to build imgdiff in Chrome OS." (diff) | |
download | android_bootable_recovery-bca162a98b8e3ccb8400d41c05b80bc1fe847451.tar android_bootable_recovery-bca162a98b8e3ccb8400d41c05b80bc1fe847451.tar.gz android_bootable_recovery-bca162a98b8e3ccb8400d41c05b80bc1fe847451.tar.bz2 android_bootable_recovery-bca162a98b8e3ccb8400d41c05b80bc1fe847451.tar.lz android_bootable_recovery-bca162a98b8e3ccb8400d41c05b80bc1fe847451.tar.xz android_bootable_recovery-bca162a98b8e3ccb8400d41c05b80bc1fe847451.tar.zst android_bootable_recovery-bca162a98b8e3ccb8400d41c05b80bc1fe847451.zip |
Diffstat (limited to 'applypatch/Makefile')
-rw-r--r-- | applypatch/Makefile | 32 |
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 $@ $^ |