12 lines
473 B
Text
12 lines
473 B
Text
Index: makefiles/makefile
|
|
--- makefiles/makefile.orig
|
|
+++ makefiles/makefile
|
|
@@ -44,7 +44,7 @@ all: mandelbulber
|
|
mandelbulber: $(OBJS) $(USER_OBJS)
|
|
@echo 'Building target: $@'
|
|
@echo 'Invoking: GCC C++ Linker'
|
|
- g++ -o"mandelbulber" -L/usr/lib/x86_64-linux-gnu/ $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(OBJS) $(USER_OBJS) $(LIBS)
|
|
+ ${CXX} -o"mandelbulber" $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(OBJS) $(USER_OBJS) $(LIBS)
|
|
@echo 'Finished building target: $@'
|
|
@echo ' '
|
|
|