41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
distclean: clean clean-conf clean-doc
@-rm -f build-stamp configure-stamp config.log mtt.sh
install: build clean.sh
@install -d $(INSTDIR) $(CONFDIR) $(PROGDIR)
@install -d $(INSTDIR)/bin $(INSTDIR)/cc $(INSTDIR)/lib
@install bin/mttrc $(CONFDIR)/mtt.conf
@install mtt.sh $(PROGDIR)/mtt
@install cc/parse_m2cc.exe $(INSTDIR)/bin/trans
install-doc: clean-doc.sh
@install -d $(DOCDIR) $(INFODIR)
@cd doc ; DOCPATH=$(DOCDIR) INFOPATH=$(INFODIR) make -s install-doc
.PHONY: FORCE
|
|
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
distclean: clean clean-conf clean-doc
@-rm -f build-stamp configure-stamp config.log mtt.sh
install: build clean.sh
@install -d $(INSTDIR) $(CONFDIR) $(PROGDIR)
@install -d $(INSTDIR)/bin $(INSTDIR)/cc $(INSTDIR)/lib
@install bin/mttrc $(CONFDIR)/mtt.conf
@install mtt.sh bin/xmtt $(PROGDIR)
@install cc/parse_m2cc.exe $(INSTDIR)/bin/trans
install-doc: clean-doc.sh
@install -d $(DOCDIR) $(INFODIR)
@cd doc ; DOCPATH=$(DOCDIR) INFOPATH=$(INFODIR) make -s install-doc
.PHONY: FORCE
|