]> mj.ucw.cz Git - edid.git/commitdiff
The first public release: v1.1 v1.1
authorMartin Mares <mj@ucw.cz>
Tue, 30 Oct 2018 19:44:27 +0000 (20:44 +0100)
committerMartin Mares <mj@ucw.cz>
Tue, 30 Oct 2018 19:45:00 +0000 (20:45 +0100)
Makefile
README

index f2f96c9ab845f6266f99e180a4de812790681cf4..7157ebfda9f992f91866f408873b03e22d8068fd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,18 @@
 CC=gcc
 LD=gcc
 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Wundef -Wredundant-decls -std=gnu99
+VERSION=1.1
+ARCHIVE=edid-$(VERSION).tar.gz
 
 all: edid
 
 clean:
        rm -f *.o edid
+
+release:
+       git tag v$(VERSION)
+       git push --tags
+       git archive --format=tar --prefix=edid-$(VERSION)/ HEAD | gzip >$(ARCHIVE)
+       scp $(ARCHIVE) atrey:~ftp/pub/local/mj/linux/
+       ssh jw "cd web && bin/release-prog edid $(VERSION)"
+       mv $(ARCHIVE) ~/archives/mj/
diff --git a/README b/README
index 0f894a57ceb500d62e426993012042654c784cac..7e48cefa6c7460bbe058b2d95f21b9df71c7c748 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@
 
                             A Parser for VESA EDID
 
-                   (c) 2011--2015 Martin Mares <mj@ucw.cz>
+                   (c) 2011--2018 Martin Mares <mj@ucw.cz>
 
        You can use and distribute this program under the terms of GPLv2.