diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-08-12 16:54:30 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-08-12 16:54:30 +0200 |
commit | fc20b1c3d210ff1821d6c56fb0b8c9c6ba625aa5 (patch) | |
tree | 45d8c82bb6571634820ed0432c561c47a8d5f08f /Makefile | |
parent | e4ef000b703080131f4608f8bdcbe108a9b30b51 (diff) | |
download | yosys-fc20b1c3d210ff1821d6c56fb0b8c9c6ba625aa5.tar.gz yosys-fc20b1c3d210ff1821d6c56fb0b8c9c6ba625aa5.tar.bz2 yosys-fc20b1c3d210ff1821d6c56fb0b8c9c6ba625aa5.zip |
Fixed "make clean" for out-of-tree builds
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -397,7 +397,7 @@ manual: $(TARGETS) $(EXTRA_TARGETS) clean: rm -rf share - cd manual && bash clean.sh + if test -d manual; then cd manual && sh clean.sh; fi rm -f $(OBJS) $(GENFILES) $(TARGETS) $(EXTRA_TARGETS) $(EXTRA_OBJS) rm -f kernel/version_*.o kernel/version_*.cc abc/abc-[0-9a-f]* rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d techlibs/*/*.d |