mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 20:13:32 +01:00
19 lines
448 B
Makefile
19 lines
448 B
Makefile
# generic utility modules
|
|
# (c) 2001 jannet it services
|
|
# contact@jannet.de
|
|
# $Id$
|
|
|
|
CLEAN += config.status
|
|
DISTCLEAN += configure config.log autoscan.log configure.ac config.status
|
|
|
|
configure.ac: configure.ac.tmpl $(TOPDIR)/VERSION
|
|
cat $< | sed -e "s/_VERSION_/`cat $(TOPDIR)/VERSION | sed 's/-dev//'`/" > $@
|
|
|
|
configure: configure.ac
|
|
autoconf $< > $@
|
|
chmod 755 $@
|
|
|
|
config.status: configure
|
|
./configure $(CONFIGURE_OPTS)
|
|
|
|
config: config.status
|