sunterlib/Makefile

79 lines
2.2 KiB
Makefile
Raw Normal View History

SHELL = /bin/sh
2003-02-24 13:48:44 -05:00
2006-02-18 04:14:57 -05:00
.DEFAULT_GOAL := all
.SUFFIXES:
major-version = 0
2006-02-18 14:29:13 -05:00
minor-version = 9
version := $(major-version).$(minor-version)
prefix = /tmp/sunterlib
2005-07-07 22:12:13 -04:00
dest-dir = /tmp/stage
s48-authors := $(shell find s48 \
-maxdepth 2 -mindepth 2 \
-name AUTHORS)
s48-blurbs := $(shell find s48 \
-maxdepth 2 -mindepth 2 \
-name BLURB)
2003-02-24 13:48:44 -05:00
scsh-authors := $(shell find scsh \
-maxdepth 2 -mindepth 2 \
-name AUTHORS)
scsh-blurbs := $(shell find scsh \
-maxdepth 2 -mindepth 2 \
-name BLURB)
2003-01-27 17:09:05 -05:00
.PHONY: version-check
version-check :
build/version-check.scm
targets := DETAILS COPYING pkg-def.scm version-check
2003-01-27 17:09:05 -05:00
.PHONY: all
2006-02-18 13:47:23 -05:00
all : $(targets)
2003-01-27 17:09:05 -05:00
DETAILS : $(s48-authors) $(s48-blurbs) $(scsh-authors) $(scsh-blurbs) \
build/details.scm build/dirs.scm build/header.scm
build/details.scm
COPYING : $(s48-authors) $(scsh-authors) \
build/copying.scm build/common.scm build/header.scm build/dirs.scm
build/copying.scm
2003-02-24 13:48:44 -05:00
pkg-def.scm : $(s48-authors) $(scsh-authors) \
build/make-pkg-def.scm build/common.scm build/header.scm \
build/dirs.scm
build/make-pkg-def.scm $(major-version) $(minor-version)
2003-02-24 13:48:44 -05:00
2005-07-07 22:12:13 -04:00
.PHONY : install uninstall build-phase install-phase
install : $(targets)
2005-07-07 22:12:13 -04:00
scsh-install-pkg --prefix $(prefix) --dest-dir $(dest-dir)
build-phase: $(targets)
scsh-install-pkg --prefix $(prefix) --dest-dir $(dest-dir) --phases build
install-phase: $(targets)
scsh-install-pkg --prefix $(prefix) --dest-dir $(dest-dir) --phases install
2003-02-24 13:48:44 -05:00
.PHONY : dist
2004-03-11 15:58:36 -05:00
dist : $(targets)
mkdir sunterlib-$(version)
cp pkg-def.scm COPYING DETAILS INSTALL NEWS README README.contrib \
2005-07-07 21:29:00 -04:00
sunterlib-$(version)/
cp -r s48 sunterlib-$(version)/s48
cp -r scsh sunterlib-$(version)/scsh
2003-02-25 01:46:51 -05:00
find sunterlib-$(version)/ -name CVS | xargs rm -rf
find sunterlib-$(version)/ -name "*~" | xargs rm -f
tar -czf sunterlib-$(version).tar.gz sunterlib-$(version)
rm -rf sunterlib-$(version)
gpg -b sunterlib-$(version).tar.gz
.PHONY : clean distclean
2003-01-27 17:09:05 -05:00
clean :
-rm -f $(targets)
distclean : clean
-rm -rf sunterlib-$(version) sunterlib-$(version).tar.gz sunterlib-$(version).tar.gz.sig