| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 # | 4 # |
| 5 # Makefile | 5 # Makefile |
| 6 # | 6 # |
| 7 # usage: 'make [package]' | 7 # usage: 'make [package]' |
| 8 # | 8 # |
| 9 # This makefile builds all of the Native Client packages listed below | 9 # This makefile builds all of the Native Client packages listed below |
| 10 # in $(PACKAGES). Each package has a dependency on its own sentinel | 10 # in $(PACKAGES). Each package has a dependency on its own sentinel |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 ports/libvorbis \ | 123 ports/libvorbis \ |
| 124 ports/libxml2 \ | 124 ports/libxml2 \ |
| 125 ports/lua5.1 \ | 125 ports/lua5.1 \ |
| 126 ports/lua5.2 \ | 126 ports/lua5.2 \ |
| 127 ports/metakit \ | 127 ports/metakit \ |
| 128 ports/Mesa \ | 128 ports/Mesa \ |
| 129 ports/mpg123 \ | 129 ports/mpg123 \ |
| 130 ports/nacl-mounts \ | 130 ports/nacl-mounts \ |
| 131 ports/ncurses \ | 131 ports/ncurses \ |
| 132 ports/openal-soft \ | 132 ports/openal-soft \ |
| 133 ports/opencv \ |
| 133 ports/OpenSceneGraph \ | 134 ports/OpenSceneGraph \ |
| 134 ports/openssl \ | 135 ports/openssl \ |
| 135 ports/pango \ | 136 ports/pango \ |
| 136 ports/physfs \ | 137 ports/physfs \ |
| 137 ports/pixman \ | 138 ports/pixman \ |
| 138 ports/protobuf \ | 139 ports/protobuf \ |
| 139 ports/python \ | 140 ports/python \ |
| 140 ports/readline \ | 141 ports/readline \ |
| 141 ports/Regal \ | 142 ports/Regal \ |
| 142 ports/ruby \ | 143 ports/ruby \ |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 mesa Mesa: ports/Mesa ; | 359 mesa Mesa: ports/Mesa ; |
| 359 metakit: ports/metakit ; | 360 metakit: ports/metakit ; |
| 360 mikmod libmikmod: ports/libmikmod ; | 361 mikmod libmikmod: ports/libmikmod ; |
| 361 mng libmng: ports/libmng ; | 362 mng libmng: ports/libmng ; |
| 362 modplug libmodplug: ports/libmodplug ; | 363 modplug libmodplug: ports/libmodplug ; |
| 363 mpg123: ports/mpg123 ; | 364 mpg123: ports/mpg123 ; |
| 364 nacl-mounts: ports/nacl-mounts ; | 365 nacl-mounts: ports/nacl-mounts ; |
| 365 ncurses: ports/ncurses ; | 366 ncurses: ports/ncurses ; |
| 366 ogg libogg: ports/libogg ; | 367 ogg libogg: ports/libogg ; |
| 367 openal openal-soft: ports/openal-soft ; | 368 openal openal-soft: ports/openal-soft ; |
| 369 opencv: ports/opencv ; |
| 368 openscenegraph OpenSceneGraph: ports/OpenSceneGraph ; | 370 openscenegraph OpenSceneGraph: ports/OpenSceneGraph ; |
| 369 openssl: ports/openssl ; | 371 openssl: ports/openssl ; |
| 370 pango: ports/pango ; | 372 pango: ports/pango ; |
| 371 physfs: ports/physfs ; | 373 physfs: ports/physfs ; |
| 372 pixman: ports/pixman ; | 374 pixman: ports/pixman ; |
| 373 png libpng: ports/libpng ; | 375 png libpng: ports/libpng ; |
| 374 protobuf: ports/protobuf ; | 376 protobuf: ports/protobuf ; |
| 375 python: ports/python ; | 377 python: ports/python ; |
| 376 readline: ports/readline ; | 378 readline: ports/readline ; |
| 377 regal Regal: ports/Regal ; | 379 regal Regal: ports/Regal ; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 ruby_ppapi: ports/ruby_ppapi ; | 416 ruby_ppapi: ports/ruby_ppapi ; |
| 415 scummvm: ports/scummvm ; | 417 scummvm: ports/scummvm ; |
| 416 snes9x: ports/snes9x ; | 418 snes9x: ports/snes9x ; |
| 417 texlive: ports/texlive ; | 419 texlive: ports/texlive ; |
| 418 thttpd: ports/thttpd ; | 420 thttpd: ports/thttpd ; |
| 419 openssh: ports/openssh ; | 421 openssh: ports/openssh ; |
| 420 # Deliberate space after vim target to avoid detection | 422 # Deliberate space after vim target to avoid detection |
| 421 # as modeline string. | 423 # as modeline string. |
| 422 vim : ports/vim ; | 424 vim : ports/vim ; |
| 423 xaos: ports/xaos ; | 425 xaos: ports/xaos ; |
| OLD | NEW |