From b61268b9deea32b7d965808f47d1227e3197a83c Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Mon, 30 Jan 2012 12:33:41 +0200 Subject: Add Makefile. --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..73876d0 --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ +PROJECT = gcide +VERSION = 0.51 + +DISTFILES=\ + $(wildcard CIDE.[A-Z])\ + COPYING\ + PRONUNC.JPG\ + PRONUNC.WEB\ + README.DIC\ + SYMBOLS.JPG\ + TAGSET.WEB\ + WEBFONT.ASC\ + WXXVII.JPG + +DISTBASE = $(PROJECT)-$(VERSION) + +distdir: + rm -rf $(DISTBASE) + mkdir $(DISTBASE) + cp $(DISTFILES) $(DISTBASE) + +dist: distdir + GZIP=--best tar -Hustar -czf $(DISTBASE).tar.gz $(DISTBASE) + tar -Hustar -cJf $(DISTBASE).tar.xz $(DISTBASE) + rm -f $(DISTBASE).zip; zip -9 -r $(DISTBASE).zip $(DISTBASE) + rm -rf $(DISTBASE) + -- cgit v1.2.1