We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0159f9c commit d88db7bCopy full SHA for d88db7b
docs/static/makefile-options.rst
@@ -194,6 +194,12 @@ Extra libload (``.lib``) libraries to be added at link time.
194
195
EXTRA_LIBLOAD_LIBS = <space separated list of libraries>
196
197
+Extra command(s) to run when :code:`make clean` is executed.
198
+
199
+.. code-block:: makefile
200
201
+ EXTRA_CLEAN =
202
203
.. rubric:: MAKE_GFX
204
205
This is the command that is run when :code:`make gfx` is executed.
src/makefile.mk
@@ -290,7 +290,7 @@ $(ICONSRC): $(ICONIMG) $(MAKEFILE_LIST) $(DEPS)
290
endif
291
292
clean:
293
- $(Q)$(call RM,$(EXTRA_CLEAN))
+ $(Q)$(EXTRA_CLEAN)
294
$(Q)$(call RMDIR,$(OBJDIR) $(BINDIR))
295
$(Q)echo Removed built binaries and objects.
296
0 commit comments