| 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 ports listed below | 9 # This makefile builds all of the Native Client ports listed below |
| 10 # in $(ALL_PORTS). Each port has a dependency on its own sentinel | 10 # in $(ALL_PORTS). Each port has a dependency on its own sentinel |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 $(SENT)/ports/SDL_mixer: ports/SDL ports/libogg ports/libvorbis ports/libmikmod | 315 $(SENT)/ports/SDL_mixer: ports/SDL ports/libogg ports/libvorbis ports/libmikmod |
| 316 $(SENT)/ports/SDL_image: ports/SDL ports/libpng ports/jpeg8d | 316 $(SENT)/ports/SDL_image: ports/SDL ports/libpng ports/jpeg8d |
| 317 $(SENT)/ports/SDL_net: ports/SDL | 317 $(SENT)/ports/SDL_net: ports/SDL |
| 318 $(SENT)/ports/SDL_ttf: ports/SDL ports/freetype | 318 $(SENT)/ports/SDL_ttf: ports/SDL ports/freetype |
| 319 $(SENT)/ports/boost: ports/zlib ports/bzip2 | 319 $(SENT)/ports/boost: ports/zlib ports/bzip2 |
| 320 $(SENT)/ports/freealut: ports/openal-soft | 320 $(SENT)/ports/freealut: ports/openal-soft |
| 321 $(SENT)/ports/openal-ogg: ports/openal-soft ports/libvorbis | 321 $(SENT)/ports/openal-ogg: ports/openal-soft ports/libvorbis |
| 322 $(SENT)/ports/opencv: ports/zlib ports/libpng ports/jpeg6b | 322 $(SENT)/ports/opencv: ports/zlib ports/libpng ports/jpeg6b |
| 323 $(SENT)/ports/readline: ports/ncurses | 323 $(SENT)/ports/readline: ports/ncurses |
| 324 ifneq ($(NACL_GLIBC), 1) | 324 ifneq ($(NACL_GLIBC), 1) |
| 325 $(SENT)/ports/apr: ports/glibc-compat |
| 325 $(SENT)/ports/git: ports/glibc-compat | 326 $(SENT)/ports/git: ports/glibc-compat |
| 326 $(SENT)/ports/readline: ports/glibc-compat | 327 $(SENT)/ports/readline: ports/glibc-compat |
| 327 $(SENT)/ports/openssl: ports/glibc-compat | 328 $(SENT)/ports/openssl: ports/glibc-compat |
| 328 $(SENT)/ports/ncurses: ports/glibc-compat | 329 $(SENT)/ports/ncurses: ports/glibc-compat |
| 329 $(SENT)/ports/netcat: ports/glibc-compat | 330 $(SENT)/ports/netcat: ports/glibc-compat |
| 330 endif | 331 endif |
| 331 $(SENT)/ports/libmng: ports/zlib ports/jpeg8d | 332 $(SENT)/ports/libmng: ports/zlib ports/jpeg8d |
| 332 $(SENT)/ports/lcms: ports/zlib ports/jpeg8d ports/tiff | 333 $(SENT)/ports/lcms: ports/zlib ports/jpeg8d ports/tiff |
| 333 $(SENT)/ports/DevIL: ports/libpng ports/jpeg8d ports/libmng ports/tiff \ | 334 $(SENT)/ports/DevIL: ports/libpng ports/jpeg8d ports/libmng ports/tiff \ |
| 334 ports/lcms | 335 ports/lcms |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 snes9x: ports/snes9x ; | 456 snes9x: ports/snes9x ; |
| 456 subversion: ports/subversion ; | 457 subversion: ports/subversion ; |
| 457 texlive: ports/texlive ; | 458 texlive: ports/texlive ; |
| 458 toybox: ports/toybox ; | 459 toybox: ports/toybox ; |
| 459 thttpd: ports/thttpd ; | 460 thttpd: ports/thttpd ; |
| 460 openssh: ports/openssh ; | 461 openssh: ports/openssh ; |
| 461 # Deliberate space after vim target to avoid detection | 462 # Deliberate space after vim target to avoid detection |
| 462 # as modeline string. | 463 # as modeline string. |
| 463 vim : ports/vim ; | 464 vim : ports/vim ; |
| 464 xaos: ports/xaos ; | 465 xaos: ports/xaos ; |
| OLD | NEW |