summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile
AgeCommit message (Collapse)Author
2020-01-30[build] Makefile examples modularizationRay
Now examples can be compiled by module, that's useful when compilation fails at some point
2020-01-30Some examples tweaksRay
2020-01-15Review Makefiles for web compilationRay
2020-01-09Renamed directoryRay
2019-12-16Review flags and web compilationRay
2019-11-24Review PR #1022raysan5
Actually OpenAL is not used any more, it should be using CoreAudio
2019-11-24fix example build on macos (#1022)Richard Smith
2019-10-11corrected examples Makefile target (#985)chriscamacho
2019-09-22contributed simple shader example (#973)chriscamacho
Contributed simple shader example
2019-09-12RENAMED: text_sprite_font > text_font_spritefontRay
2019-09-12REDESIGNED: models_obj_loading > models_loadingRay
2019-08-27examples makefile not deleting examples in Linux (#955)chriscamacho
I'm not sure why the clean command is so complex (especially given that find -type f -executable | xargs rm -fv works!) but I fixed the version as is, to support x-pie-executable which was preventing it deleting anything on my system...
2019-07-28Added scissor test and mouse painting examples proposed in #890 (#919)ChrisDill
- Updated Makefile with new examples
2019-07-27#917 This commit changes the path to 'shell.html' in all Makefiles (#918)Antonio Radovcic
2019-06-29add multi channel audio to raudio (#895)chriscamacho
* added multi channel sound replay to raudio added -fPIC to Makefile for Linux added simple lighting and audio multi channel to examples Makefile * not properly reporting audio buffer pool size...
2019-06-12Review DEBUG modeRay
2019-06-09Update MakefileXiaochuanWang
a minor issue: where the location of the file "raylib.rc.data" is wrong, and this will cause an error in compilation.
2019-05-22Move emscripten web shell to srcRay
2019-05-21Review MakefilesRay
2019-05-21Review pathsRay
2019-05-17examples reviewRay
2019-05-16new example: shaders_eratosthenesRay
Contributed by ProfJski
2019-05-16Review build config on webRay
2019-05-15Added new examples to MakefileRay
2019-05-14Improve support for web buildingRay
Note that building examples for web as they are (no code adaptation for web avoiding while loop) implies using the emterpreter... and that's very slow!
2019-05-12Added julia set shader example.eggmund
2019-05-07NO SUPPORT_BUSY_WAIT_LOOP by defaultRay
2019-05-02Update MakefileRay
2019-04-28Minor tweaksraysan5
2019-04-23WARNING: Issues on web buildingRay
Found some issues when building for web using latest emscripten 1.38.30, traced the error and found that eglGetProcAdress does not return function pointers for VAO functionality, supported by extension. It requires more investigation but now it works (avoiding VAO usage)
2019-04-12Review some examplesRay
2019-04-07Happy new year 2019ChillerDragon
2019-01-09Merge pull request #718 from MarcoLizza/shaders-uniforms-arrayRay
Shaders uniforms array
2019-01-09Adding basic palette-switching example using uniform arrays.Marco Lizza
2019-01-09Fixing typo in examples makefile, preventing build.Marco Lizza
2019-01-01Update Makefile for Emscriptenraysan5
2018-12-20Some tweaksRay
2018-11-26Enable SDL2 library for audio on WebRay
Solves audio cracking issues
2018-11-19Review resources namingRay
raylib resource data file for Windows platform (containing raylib icon and metadata for executable file) has been renamed to a more consistent name: raylib.rc.data Also required to work with tcc compiler.
2018-10-21Added multitouch exampleBerni8k
2018-07-21Review formattingraysan5
2018-07-21Support examples with Emterpreterraysan5
Examples can be compiled for web with no code change at all! Usually examples need to be refactored for web... using emscripten code interpreter (emterpreter), it can manage synchronous while() loops internally... as a downside, execution is very slow...
2018-07-21Looking for a place for raylib resource fileraysan5
2018-07-15Added new example: text_font_sdfRay
2018-06-23Added support OpenBSD, NetBSD, DragonFly[email protected]
2018-05-29Reviewed Windows resource file nameRay
2018-05-12Makefile: Remove unnecessary -no-pie for older GCC supportAhmad Fatoum
Currently, if: * GCC doesn't supports -no-pie: Build error * GCC supports -no-pie * GCC is not configured with --enable-default-pie: No-op * GCC is configured with --enable-default-pie: Slightly worse performance because we still generate -fpie code (-pie affects linker, -fpie affects compiler) So instead of probing for existence of -fno-pie -no-pie, remove it altogether. Fixes #540: Build breakage on Debian 8 with gcc 4.9.
2018-05-11Review raylib version to 2.0Ray
Review raylib_icon resource
2018-04-10Updated release version1.9.7-devRay San
2018-02-24Update Makefiles. Enable example usage of staged libraylib.so.RDR8