浏览代码

Moved pre-built binary to separate server

Taddeus Kroes 11 年之前
父节点
当前提交
2e91dba8c7
共有 3 个文件被更改,包括 5 次插入11 次删除
  1. 1 8
      Makefile
  2. 4 3
      README.md
  3. 二进制
      dist/mincss

+ 1 - 8
Makefile

@@ -1,5 +1,4 @@
 RESULT    := mincss
 RESULT    := mincss
-DIST      := dist/mincss
 PRE_TGTS  := types
 PRE_TGTS  := types
 MODULES   := color_names util stringify parser lexer parse simple shorthand \
 MODULES   := color_names util stringify parser lexer parse simple shorthand \
              duplicates main
              duplicates main
@@ -12,17 +11,11 @@ OCAMLLDLIBS  := str.cmxa
 OCAMLLEX  := ocamllex
 OCAMLLEX  := ocamllex
 OCAMLYACC := menhir --infer --explain --dump
 OCAMLYACC := menhir --infer --explain --dump
 
 
-.PHONY: all dist clean
+.PHONY: all clean
 .PRECIOUS: $(addprefix .cmi,$(ALL_NAMES))
 .PRECIOUS: $(addprefix .cmi,$(ALL_NAMES))
 
 
 all: $(RESULT)
 all: $(RESULT)
 
 
-dist: $(DIST)
-
-$(DIST): $(RESULT)
-	@mkdir -p $(@D)
-	cp $< $@
-
 %.ml: %.mll
 %.ml: %.mll
 	$(OCAMLLEX) -o $@ $<
 	$(OCAMLLEX) -o $@ $<
 
 

+ 4 - 3
README.md

@@ -10,9 +10,10 @@ transformation passes.
 Installation
 Installation
 ============
 ============
 
 
-For now, there is no easy installation option for mincss (yet). A pre-built
-64-bit ELF binary is available for download [here](dist/mincss). You can also
-build the binary from source (see *Building mincss* below).
+For now, there is no easy installation option for mincss (yet). An up-to-date
+64-bit ELF binary is available for download
+[here](http://mincss.tkroes.nl/mincss). You can also build the binary from
+source (see *Building mincss* below).
 
 
 
 
 Features
 Features

二进制
dist/mincss