1# 2# Copyright (C) 2010 The Android Open Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17.PHONY: help 18help: 19 @echo 20 @echo "Common make targets:" 21 @echo "----------------------------------------------------------------------------------" 22 @echo "droid Default target" 23 @echo "clean (aka clobber) equivalent to rm -rf out/" 24 @echo "snod Quickly rebuild the system image from built packages" 25 @echo "vnod Quickly rebuild the vendor image from built packages" 26 @echo "offline-sdk-docs Generate the HTML for the developer SDK docs" 27 @echo "doc-comment-check-docs Check HTML doc links & validity, without generating HTML" 28 @echo "libandroid_runtime All the JNI framework stuff" 29 @echo "framework All the java framework stuff" 30 @echo "services The system server (Java) and friends" 31 @echo "help You're reading it right now" 32 33.PHONY: out 34out: 35 @echo "I'm sure you're nice and all, but no thanks." 36