mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-07-09 10:36:36 +00:00
25 lines
395 B
Makefile
25 lines
395 B
Makefile
# Make archives for distribution
|
|
|
|
include version.mif
|
|
|
|
PDC_DIR=PDCurses-$(VERDOT)
|
|
|
|
ZIPFILE = pdcurs$(VER).zip
|
|
TARBALL = $(PDC_DIR).tar.gz
|
|
|
|
all:
|
|
@echo Look in folders for platform-specific build instructions.
|
|
|
|
manual:
|
|
cd doc; $(MAKE) $(MFLAGS) $@
|
|
|
|
$(ZIPFILE):
|
|
zip -9ory $(ZIPFILE) *
|
|
|
|
zip: $(ZIPFILE)
|
|
|
|
../$(TARBALL):
|
|
(cd ..; tar cvf - $(PDC_DIR)/* | gzip -9 > $(TARBALL))
|
|
|
|
dist: ../$(TARBALL)
|