Skip to content
Snippets Groups Projects
Commit 135f8c48 authored by Erik Alexandre Pucci's avatar Erik Alexandre Pucci Committed by Danilo K. S. Yorinori
Browse files

src/Makefile: Changed "*.~" to "*~" in clean and distclean options

parent 530d1685
Branches
Tags
No related merge requests found
...@@ -46,8 +46,8 @@ soap: ...@@ -46,8 +46,8 @@ soap:
@$(LIBGSOAPBIN)/soapcpp2 -C -w -x $(WSCLIENTH) @$(LIBGSOAPBIN)/soapcpp2 -C -w -x $(WSCLIENTH)
clean: clean:
@find . \( -name '*.~' -o -name '*.o' -o -name '*.bak' -o -name 'core*' \) -exec rm -f {} \; @find . \( -name '*~' -o -name '*.o' -o -name '*.bak' -o -name 'core*' \) -exec rm -f {} \;
distclean: distclean:
@find . \( -name '*.o' -o -name '*.~' -o -name '*.bak' -o -name 'core*' \) -exec rm -f {} \; @find . \( -name '*.o' -o -name '*~' -o -name '*.bak' -o -name 'core*' \) -exec rm -f {} \;
@rm -rf $(WSSERVER)* soap* $(WSCLIENTH) stdsoap* $(BINDIR) @rm -rf $(WSSERVER)* soap* $(WSCLIENTH) stdsoap* $(BINDIR)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment