diff options
author | Dan Nicholson <[email protected]> | 2008-05-07 11:35:23 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2008-05-07 11:35:23 -0700 |
commit | a6464b3cb08b86d5fc537a4907849546a63ae4da (patch) | |
tree | e3f780df1222827ca5a622c3f5f76b240f132ad6 /src/mesa/glapi | |
parent | df8134c3cf53a2e4363f27e9a1266e685ca7f0e7 (diff) |
Never fail `make clean'
Mostly some pedantic changes such that `make clean' always ignores
errors. Also changed the top clean target to do the `touch
configs/current' dance instead of realclean.
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r-- | src/mesa/glapi/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/glapi/Makefile b/src/mesa/glapi/Makefile index 6520f75e134..13f5302b160 100644 --- a/src/mesa/glapi/Makefile +++ b/src/mesa/glapi/Makefile @@ -113,5 +113,5 @@ $(GLX_DIR)/indirect_table.c: glX_server_table.py gl_and_glX_API.xml $(COMMON_GLX $(PYTHON2) $(PYTHON_FLAGS) $< -f gl_and_glX_API.xml > $@ clean: - rm -f *~ *.pyo - rm -f $(OUTPUTS) + -rm -f *~ *.pyo + -rm -f $(OUTPUTS) |