53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
@cd doc ; DOCPATH=$(DOCDIR) INFOPATH=$(INFODIR) make -s install-doc
.PHONY: FORCE
clean.sh: FORCE
@echo '#! /bin/sh' >>clean.sh
@echo '# This file is auto-generated - do not edit' >>clean.sh
@echo 'rm -f $(PROGDIR)/mtt' >>clean.sh
@echo 'rm -fr $(INSTDIR)' >>clean.sh
clean-conf.sh: FORCE
@echo '#! /bin/sh' >>clean-conf.sh
@echo '# This file is auto-generated - do not edit' >>clean-conf.sh
@echo 'rm -f $(CONFDIR)/mtt.conf' >>clean-conf.sh
|
|
|
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
@cd doc ; DOCPATH=$(DOCDIR) INFOPATH=$(INFODIR) make -s install-doc
.PHONY: FORCE
clean.sh: FORCE
@echo '#! /bin/sh' >>clean.sh
@echo '# This file is auto-generated - do not edit' >>clean.sh
@echo 'rm -f $(PROGDIR)/mtt $(PROGDIR)/xmtt' >>clean.sh
@echo 'rm -fr $(INSTDIR)' >>clean.sh
clean-conf.sh: FORCE
@echo '#! /bin/sh' >>clean-conf.sh
@echo '# This file is auto-generated - do not edit' >>clean-conf.sh
@echo 'rm -f $(CONFDIR)/mtt.conf' >>clean-conf.sh
|