#10 closed defect (fixed)
Wrong make clean targets in src/omega
Reported by: | Juergen Reuter | Owned by: | ohl |
---|---|---|---|
Priority: | P5 | Milestone: | |
Component: | configure | Version: | 2.0.0alpha |
Severity: | trivial | Keywords: | Makefile.am |
Cc: |
Description
There is somehow a wrong assignment from the old Makefile structure in the new bundle:
for d in src bin lib web doc tools models; \
do test -f $d/Makefile && make -C $d clean_fc; true; \
done
make[4]: * No rule to make target `clean_fc'. Stop. make[4]: * No rule to make target `clean_fc'. Stop. make[4]: * No rule to make target `clean_fc'. Stop. make[4]: * No rule to make target `clean_fc'. Stop. make[4]: * No rule to make target `clean_fc'. Stop. make[4]: * No rule to make target `clean_fc'. Stop. make[4]: * No rule to make target `clean_fc'. Stop. find -name 'omega_cache_*' -exec rm -f '{}' ';' for d in src bin lib web doc tools models; \
do test -f $d/Makefile && make -C $d clean_caml; true; \
done
make[4]: * No rule to make target `clean_caml'. Stop. make[4]: * No rule to make target `clean_caml'. Stop. make[4]: * No rule to make target `clean_caml'. Stop. make[4]: * No rule to make target `clean_caml'. Stop. make[4]: * No rule to make target `clean_caml'. Stop. make[4]: * No rule to make target `clean_caml'. Stop. make[4]: * No rule to make target `clean_caml'. Stop. for d in src bin lib web doc tools models; \
do test -f $d/Makefile && make -C $d clean_tex; true; \
done
make[4]: * No rule to make target `clean_tex'. Stop. make[4]: * No rule to make target `clean_tex'. Stop. make[4]: * No rule to make target `clean_tex'. Stop. make[4]: * No rule to make target `clean_tex'. Stop. make[4]: * No rule to make target `clean_tex'. Stop. make[4]: * No rule to make target `clean_tex'. Stop. make[4]: * No rule to make target `clean_tex'. Stop
Change History (3)
comment:1 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 15 years ago by
Milestone: | v2-compiles-gfortran → v2.0-beta |
---|
I added targets clean_fc, clean_caml and clean_tex in the corresponding O'Mega subdirs, thereby solving these error messages. Done by JR in v1178.