diff options
author | Simon Cornish <[email protected]> | 2013-09-02 23:25:07 -0700 |
---|---|---|
committer | Simon Cornish <[email protected]> | 2013-09-02 23:25:07 -0700 |
commit | c141bd0521aca697e167b15a9b90f93b43da806a (patch) | |
tree | 3396c6b8d111ab7a0d29f1cd0d03ff41a8703122 /lib | |
parent | 6a6bc2560c60ea790780dcfbc91336a734eff1be (diff) | |
download | otp-c141bd0521aca697e167b15a9b90f93b43da806a.tar.gz otp-c141bd0521aca697e167b15a9b90f93b43da806a.tar.bz2 otp-c141bd0521aca697e167b15a9b90f93b43da806a.zip |
Remove object files when cleaning
Otherwise something like this will fail:
./otp_build setup --enable-m32-build
make clean
./otp_build setup --enable-m64-build
Diffstat (limited to 'lib')
-rw-r--r-- | lib/os_mon/c_src/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/os_mon/c_src/Makefile.in b/lib/os_mon/c_src/Makefile.in index 51569f6ec9..f84ccf7c87 100644 --- a/lib/os_mon/c_src/Makefile.in +++ b/lib/os_mon/c_src/Makefile.in @@ -84,6 +84,7 @@ debug opt: $(TARGET_FILES) clean: rm -f $(TARGET_FILES) + rm -rf $(OBJDIR) rm -f core *~ docs: |