aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-08 05:14:08 +0000
committerAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-08 05:14:08 +0000
commit68a07bf03b7624c9924065cce9ffa45497225834 (patch)
treec2adb06a909a8594445e4a3f8587c4bad46e3ecd /Makefile
downloadw3m-68a07bf03b7624c9924065cce9ffa45497225834.tar.gz
w3m-68a07bf03b7624c9924065cce9ffa45497225834.zip
Initial revision
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f756399
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,42 @@
+GCLIBTGZ=gc5.0alpha3.tar.gz
+
+all: XXMakefile
+ make -f XXMakefile
+
+install: XXMakefile
+ make -f XXMakefile install
+
+uninstall: XXMakefile
+ make -f XXMakefile uninstall
+
+proto: XXMakefile
+ make -f XXMakefile proto
+
+clean: XXMakefile
+ make -f XXMakefile clean
+
+sweep: XXMakefile
+ make -f XXMakefile sweep
+
+veryclean: clean sweep
+ rm XXMakefile
+ (cd gc; make clean)
+ rm -f config.param
+ rm -f */*~ */*.orig */*.rej
+
+prepare:
+ rm -rf gc
+ gzip -dc ../$(GCLIBTGZ) | tar xvf -
+ cp XMakefile.dist XMakefile
+
+dist: XXMakefile
+ make -f XXMakefile dist
+
+bindist: XXMakefile
+ make -f XXMakefile bindist
+
+indent:
+ indent -orig -nce -ncdb -i4 -di1 -nbc *.c *.h
+
+XXMakefile: XMakefile config.h
+ awk '/^#ifdef makefile_parameter/,/^#else/' config.h | cat - XMakefile > XXMakefile