-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
62 lines (47 loc) · 1.19 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright (c) 2012 The Native Client Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# Makefile
#
# usage: 'make [package]'
#
# This makefile can by used to perform common actions such as building
# all ports, building a give port, running a webserver to test the ports.
# Each port has a dependency on its own sentinel file, which can be found
# at out/sentinels/*
SDK_LIBS = zlib tiff jpeg8d libpng freetype lua5.2 libmodplug libogg
SDK_LIBS += libtheora libvorbis libwebp libxml2 tinyxml openal-soft freealut
ifeq ($(V),1)
VERBOSE?=1
endif
ifeq ($(V),2)
VERBOSE?=1
VERBOSE_BUILD?=1
endif
ifeq ($(VERBOSE),1)
BUILD_FLAGS+=-v
endif
ifeq ($(VERBOSE_BUILD),1)
BUILD_FLAGS+=--verbose-build
endif
ifeq ($(FORCE),1)
BUILD_FLAGS+=-f
endif
export NACL_ARCH
export TOOLCHAIN
export NACL_GLIBC
all:
build_tools/naclports.py --all install $(BUILD_FLAGS)
sdklibs: $(SDK_LIBS)
sdklibs_list:
@echo $(SDK_LIBS)
run:
./httpd.py
clean:
build_tools/naclports.py --all clean
reallyclean: clean
rm -rf $(NACL_OUT)
%:
build_tools/naclports.py install $* $(BUILD_FLAGS)
.PHONY: all run clean sdklibs sdklibs_list reallyclean