Преглед на файлове

Moved pre-built binary to separate server

Taddeus Kroes преди 11 години
родител
ревизия
2e91dba8c7
променени са 3 файла, в които са добавени 5 реда и са изтрити 11 реда
  1. 1 8
      Makefile
  2. 4 3
      README.md
  3. BIN
      dist/mincss

+ 1 - 8
Makefile

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

+ 4 - 3
README.md

@@ -10,9 +10,10 @@ transformation passes.
 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

BIN
dist/mincss