forked from EmbeddedAndroid/hardware-ti-sgx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
executable file
·27 lines (21 loc) · 904 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
include Rules.make
include Makefile.KM.Android
.PHONY: all
clean: clean_km
all: all_km
install: install_km
############################# HELP ##################################
help:
@echo ""
@echo "Usage (for build): make BUILD={debug | release} OMAPES={4.x | 5.x } "
@echo " Platform OMAPES "
@echo " -------- ------ "
@echo " AM335x 4.x "
@echo " OMAP37x/AM37x 5.x "
@echo " TI81xx 6.x "
@echo "--> Specifying OMAPES is mandatory. BUILD=release by default"
@echo ""
@echo "Usage (for install): make BUILD=(release} OMAPES={ 4.x | 5.x | 6.x } install"
@echo "--> See online Graphics Getting Started Guide for further details."
@echo ""
###########################################################################