diff options
Diffstat (limited to 'c++/examples/Makefile.in')
-rw-r--r-- | c++/examples/Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index 56092e6..f146c56 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -507,6 +507,13 @@ install-data-local: uninstall-local: @$(MAKE) uninstall-examples +# Some C++ compilers/linkers will create a directory named ii_files, +# which should be cleaned. +mostlyclean-local: + if test -d ii_files; then \ + $(RM) -rf ii_files; \ + fi + # Install source files, which are the examples with .cpp suffixes. Do the same # for uninstall. install-examples: $(EXAMPLEDIR) |