193957a077
rendering 3D Mandelbrot fractals much more accessible. A few of the supported 3D fractals: Mandelbulb, Mandelbox, BulbBox, JuliaBulb, Menger Sponge, Quaternion, Trigonometric, Hypercomplex, and Iterated Function Systems (IFS). All of these can be combined into infinite variations with the ability to hybridize different formulas together. WWW: http://www.mandelbulber.com/
11 lines
450 B
Text
11 lines
450 B
Text
--- makefiles/makefile.orig 2012-12-02 20:22:54.000000000 +0400
|
|
+++ makefiles/makefile 2012-12-13 01:08:10.313933225 +0400
|
|
@@ -44,7 +44,7 @@
|
|
mandelbulber: $(OBJS) $(USER_OBJS)
|
|
@echo 'Building target: $@'
|
|
@echo 'Invoking: GCC C++ Linker'
|
|
- g++ -o"mandelbulber" -L/usr/lib/x86_64-linux-gnu/ $(OBJS) $(USER_OBJS) $(LIBS)
|
|
+ $(CXX) -o"mandelbulber" -L$(LOCALBASE)/lib $(OBJS) $(USER_OBJS) $(LIBS)
|
|
@echo 'Finished building target: $@'
|
|
@echo ' '
|
|
|