Advertisement
Guest User

makefile

a guest
Mar 6th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. include ../../Makefile.include
  2. include ../depends.mk
  3.  
  4. SOURCE=../../../../
  5.  
  6. ifeq ($(USE_BUILDROOT),1)
  7. export PATH:=$(PREFIX)/bin:$(BUILDROOT)/output/host/usr/bin:$(SYSROOT)/usr/bin:$(PATH)
  8. endif
  9.  
  10. CONFIGURE=./configure --prefix=$(PREFIX) --build=$(BUILD) --host=$(HOST) \
  11. --enable-gles --disable-sdl --disable-x11 --disable-xrandr --enable-openmax \
  12. --enable-optical-drive --enable-libbluray --enable-dvdcss --disable-joystick --disable-debug \
  13. --disable-crystalhd --disable-vtbdecoder --disable-vaapi --disable-vdpau \
  14. --disable-pulse --disable-projectm --with-platform=raspberry-pi --enable-optimizations \
  15. --enable-libcec --enable-player=omxplayer --enable-alsa
  16.  
  17. all: configure
  18.  
  19. clean:
  20. distclean:
  21. cd $(SOURCE);
  22.  
  23. configure:
  24. cd $(SOURCE); ./bootstrap
  25. cd $(SOURCE); $(CONFIGURE)
  26. #cd $(SOURCE); make -j $(JOBS)
  27. #cd $(SOURCE); make install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement