Skip to content
Snippets Groups Projects
Commit a39b0e67 authored by Sven Gestegård Robertz's avatar Sven Gestegård Robertz
Browse files

made distclean depend on clean in lib Makefiles

parent ea779a59
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,10 @@ all:
for v in $(VERSIONS) ; do $(MAKE) -C $${v} $@ || exit 1 ; done
.PHONY: clean
clean:
for v in $(VERSIONS) ; do $(MAKE) -C $${v} $@ || exit 1 ; done
.PHONY: distclean
distclean:
for v in $(VERSIONS) ; do $(MAKE) -C $${v} $@ || exit 1 ; done
......
......@@ -52,6 +52,6 @@ clean:
rm -rf gen
.PHONY: distclean
distclean:
distclean: clean
rm -rf labcomm.jar labcomm2006.jar labcomm2014.jar
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment