Fix distclean to remove generated files distributed in client tarball
This commit is contained in:
parent
82b5e3c29a
commit
2fb427b676
1 changed files with 3 additions and 3 deletions
6
Make.mk
6
Make.mk
|
@ -142,9 +142,9 @@ clean := $(obj) $(deps) $(libs) $(util) $(client) $(server) $(tsubj) \
|
||||||
$(ttop) $(info.nr) $(info.html) $(empth_obj) $(empth_lib)
|
$(ttop) $(info.nr) $(info.html) $(empth_obj) $(empth_lib)
|
||||||
# Removed by distclean:
|
# Removed by distclean:
|
||||||
distclean := $(ac) $(mk)
|
distclean := $(ac) $(mk)
|
||||||
# Distributed by dist-source from $(srcdir)
|
# Distributed by dist-source from $(srcdir):
|
||||||
src_distgen := $(acdist)
|
src_distgen := $(acdist)
|
||||||
# Distributed by dist-client from $(srcdir)/src/client
|
# Distributed by dist-client from $(srcdir)/src/client; removed by distclean:
|
||||||
cli_distgen := $(acdistcli)
|
cli_distgen := $(acdistcli)
|
||||||
|
|
||||||
# Compiler flags
|
# Compiler flags
|
||||||
|
@ -177,7 +177,7 @@ clean:
|
||||||
|
|
||||||
.PHONY: distclean
|
.PHONY: distclean
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -rf $(distclean)
|
rm -rf $(distclean) $(cli_distgen)
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: all installdirs
|
install: all installdirs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue