aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..73876d0
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,27 @@
1PROJECT = gcide
2VERSION = 0.51
3
4DISTFILES=\
5 $(wildcard CIDE.[A-Z])\
6 COPYING\
7 PRONUNC.JPG\
8 PRONUNC.WEB\
9 README.DIC\
10 SYMBOLS.JPG\
11 TAGSET.WEB\
12 WEBFONT.ASC\
13 WXXVII.JPG
14
15DISTBASE = $(PROJECT)-$(VERSION)
16
17distdir:
18 rm -rf $(DISTBASE)
19 mkdir $(DISTBASE)
20 cp $(DISTFILES) $(DISTBASE)
21
22dist: distdir
23 GZIP=--best tar -Hustar -czf $(DISTBASE).tar.gz $(DISTBASE)
24 tar -Hustar -cJf $(DISTBASE).tar.xz $(DISTBASE)
25 rm -f $(DISTBASE).zip; zip -9 -r $(DISTBASE).zip $(DISTBASE)
26 rm -rf $(DISTBASE)
27

Return to:

Send suggestions and report system problems to the System administrator.