63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
install-cc: build-cc clean-cc.sh
@install -d $(INSTDIR)/bin/trans
@install cc/parse_m2cc.exe $(INSTDIR)/bin/trans
install-doc: build-doc clean-doc.sh
@install -d $(DOCDIR) $(INFODIR)
@cd doc ; DOCPATH=$(DOCDIR) INFOPATH=$(INFODIR) make -s install-doc
@install doc/mtt.info* $(INFODIR)
.PHONY: FORCE
clean.sh: FORCE
@echo '#! /bin/sh' >>clean.sh
@echo '# This file is auto-generated - do not edit' >>clean.sh
|
>
|
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
install-cc: build-cc clean-cc.sh
@install -d $(INSTDIR)/bin/trans
@install cc/parse_m2cc.exe $(INSTDIR)/bin/trans
install-doc: build-doc clean-doc.sh
@install -d $(DOCDIR) $(INFODIR)
@cd doc ; DOCPATH=$(DOCDIR) INFOPATH=$(INFODIR) make -s install-doc
@install doc/Makefile doc/*.* $(DOCDIR)
@install doc/mtt.info* $(INFODIR)
.PHONY: FORCE
clean.sh: FORCE
@echo '#! /bin/sh' >>clean.sh
@echo '# This file is auto-generated - do not edit' >>clean.sh
|