-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
executable file
·28 lines (22 loc) · 1 KB
/
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
28
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={3.x | 5.x | 6.x | 7.x} "
@echo " Platform OMAPES "
@echo " -------- ------ "
@echo " OMAP35x/AM35x 3.x "
@echo " OMAP37x/AM37x 5.x "
@echo " 816x(389x)/814x(387x) 6.x "
@echo " OMAP4/AM45x 7.x "
@echo "--> Specifying OMAPES is mandatory. BUILD=release by default"
@echo ""
@echo "Usage (for install): make BUILD=(debug | release} OMAPES={3.x | 5.x | 6.x | 7.x} install"
@echo "--> See online Graphics Getting Started Guide for further details."
@echo ""
###########################################################################