Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Side by Side Diff: native_client_sdk/src/libraries/ppapi_gles2/Makefile

Issue 11882012: Convert all project to use common.mk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix missing common.mk path Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 #
6 # GNU Make based build file. For details on GNU Make see:
7 # http://www.gnu.org/software/make/manual/make.html
8 #
9 #
10
11
12 #
13 # Default configuration
14 #
15 # By default we will build a Debug configuration using the GCC newlib toolcahin
16 # to override this, specify TOOLCHAIN=newlib|glibc or CONFIG=Debug|Release on
17 # the make command-line or in this file prior to including common.mk. The
18 # toolchain we use by default will be the first valid one listed
19 VALID_TOOLCHAINS:=newlib glibc pnacl linux win
20
21
22 #
23 # Get pepper directory for toolchain and includes.
24 #
25 # If NACL_SDK_ROOT is not set, then assume it can be found relative to
26 # to this Makefile.
27 #
28 NACL_SDK_ROOT?=$(abspath $(CURDIR)/../..)
29 include $(NACL_SDK_ROOT)/tools/common.mk
30
31
32 # Ignore warnings
33 NACL_WARNINGS:=
34
35
36 # Target Name
37 #
38 # The base name of the final NEXE, also the name of the NMF file containing
39 # the mapping between architecture and actual NEXE.
40 #
41 TARGET=ppapi_gles2
42
43 #
44 # List of sources to compile
45 #
46 SOURCES:=gl2ext_ppapi.c gles2.c
47
48 #
49 # Use the compile macro for each source.
50 #
51 $(foreach src,$(SOURCES),$(eval $(call COMPILE_RULE,$(src))))
52
53 #
54 # Use the link macro for this target on the list of sources.
55 #
56 $(eval $(call LIB_RULE,$(TARGET),$(SOURCES)))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698