From 50c6c369d19773275f92298f69b9240778a1ba99 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 30 Oct 2018 20:44:27 +0100 Subject: [PATCH] The first public release: v1.1 --- Makefile | 10 ++++++++++ README | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f2f96c9..7157ebf 100644 --- 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 0f894a5..7e48cef 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ A Parser for VESA EDID - (c) 2011--2015 Martin Mares + (c) 2011--2018 Martin Mares You can use and distribute this program under the terms of GPLv2. -- 2.39.2