diff options
author | Anthony J. Bentley <anthony@cathet.us> | 2014-04-04 16:39:03 -0600 |
---|---|---|
committer | Anthony J. Bentley <anthony@cathet.us> | 2014-04-04 16:39:03 -0600 |
commit | b950197da1e0a53c7d220dd666ff3afbb61a1f18 (patch) | |
tree | 741cd41b2da9c64eeb863e5e43a13b0ccb6b7438 /Makefile | |
parent | 7370ae01e978f0552f1565b88c0f44b402d09f4e (diff) | |
download | yosys-b950197da1e0a53c7d220dd666ff3afbb61a1f18.tar.gz yosys-b950197da1e0a53c7d220dd666ff3afbb61a1f18.tar.bz2 yosys-b950197da1e0a53c7d220dd666ff3afbb61a1f18.zip |
Remove non-POSIX 'rm -v'.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -176,11 +176,11 @@ manual: $(TARGETS) $(EXTRA_TARGETS) cd manual && bash manual.sh clean: - rm -rvf share + rm -rf share cd manual && bash clean.sh - rm -vf $(OBJS) $(GENFILES) $(TARGETS) $(EXTRA_TARGETS) - rm -vf kernel/version_*.o kernel/version_*.cc abc/abc-[0-9a-f]* - rm -vf libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d techlibs/*/*.d + rm -f $(OBJS) $(GENFILES) $(TARGETS) $(EXTRA_TARGETS) + 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 test ! -f libs/svgviewer/Makefile || make -C libs/svgviewer distclean mrproper: clean |