Update googletest sources Add ContextInfo support for GL 4.3 and 4.4 Improved Ppca test coverage Added logging for Regal API methods Improved layer enable/disable logic in RegalContext JSON parser updates Makefile build of tiger example added Using scoped_ptr for RegalContext data
53 lines
858 B
Makefile
53 lines
858 B
Makefile
#
|
|
# Common command-line options
|
|
# ===========================
|
|
#
|
|
# To build in debug mode:
|
|
# - use MODE=debug
|
|
#
|
|
# To build using ccache (http://ccache.samba.org/)
|
|
# - use CCACHE=ccache
|
|
#
|
|
# To disable stripping of binaries:
|
|
# - use MODE=debug
|
|
# - use STRIP=
|
|
#
|
|
# To disable symlinks:
|
|
# - use LN=
|
|
#
|
|
# To see verbose output
|
|
# - use V=1 on gmake command-line
|
|
|
|
include build/common.inc
|
|
|
|
include Makefile.zlib
|
|
include Makefile.libpng
|
|
include Makefile.snappy
|
|
include Makefile.apitrace
|
|
include Makefile.regal
|
|
include Makefile.glu
|
|
include Makefile.glut
|
|
include Makefile.glew
|
|
include Makefile.glewinfo
|
|
|
|
# Examples
|
|
|
|
include Makefile.dreamtorus
|
|
include Makefile.dreamtorus_static
|
|
include Makefile.tiger
|
|
|
|
# Testing
|
|
|
|
include Makefile.gtest
|
|
include Makefile.regaltest
|
|
|
|
all::
|
|
|
|
clean::
|
|
|
|
clobber:
|
|
$(RM) -r tmp
|
|
$(RM) -r lib
|
|
$(RM) -r bin
|
|
|
|
.PHONY: all clean clobber
|