diff options
| author | Ken'ichi Fukamachi <fukachan@fml.org> | 2018-09-08 19:32:44 +0900 |
|---|---|---|
| committer | Ken'ichi Fukamachi <fukachan@fml.org> | 2018-09-08 19:32:44 +0900 |
| commit | fccfdadeef9a650ed9189bb9751a331d2931a098 (patch) | |
| tree | 410d095194af39e6a96be7cda0c7c0e647db0be3 | |
| parent | 7d4def45b997bfb9732f0cebf48571005ea2677c (diff) | |
| download | fml8-fccfdadeef9a650ed9189bb9751a331d2931a098.tar.gz fml8-fccfdadeef9a650ed9189bb9751a331d2931a098.tar.bz2 fml8-fccfdadeef9a650ed9189bb9751a331d2931a098.zip | |
remove the tradisional Makefile. instead, ./configure generates Makefile now.
| -rw-r--r-- | Makefile | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 0ffabc0a..00000000 --- a/Makefile +++ /dev/null @@ -1,62 +0,0 @@ -# -# $FML: Makefile,v 1.24 2003/07/24 23:25:47 fukachan Exp $ -# - -CONV = doc/bin/text2html.pl - -all: usage - -usage: - @ echo "make install install" - @ echo "" - @ echo "make doc generate documents" - @ echo "make tutorial generate turorials" - @ echo "" - @ echo "make clean " - -install: - ./install.pl fml/etc/install.cf - -scan: - @ git status -s - -update: - @ git pull --rebase - -clean: - @ find . |grep '~' |perl -nple unlink - -doc: text html - -html: _new_doc _html ja.doc en.doc - -text: gen_changes - -gen_changes: - test -d Documentation/ja/text || mkdir Documentation/ja/text - test -d Documentation/en/text || mkdir Documentation/en/text - - cp CHANGES.txt Documentation/ja/text - - fml/utils/bin/del_jaline.pl CHANGES.txt \ - > Documentation/en/text/CHANGES.txt - -_new_doc: - test -d Documentation/en/modules || mkdir Documentation/en/modules - -fml/utils/bin/pm2txt.pl fml/lib Documentation/en/modules - -fml/utils/bin/pm2txt.pl cpan/lib Documentation/en/modules - -fml/utils/bin/pm2txt.pl img/lib Documentation/en/modules - -_html: - @ (cd cpan/dist/; make html) - @ (cd img/dist/; make html) - -ja.doc: - @ (cd fml/doc/ja/; make clean; make ; make clean) - -en.doc: - @ (cd fml/doc/en/; make clean; make ; make clean) - -regen: fml/etc/paths.cf.in - -fml/etc/paths.cf.in: configure.in - ./fml/utils/bin/gen_paths.cf.pl configure.in > fml/etc/paths.cf.in.new - mv fml/etc/paths.cf.in.new fml/etc/paths.cf.in |
