blob: fd4010f839c96ae808995ce6dfa9c938b879ba8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- make -*-
# This make fragment is included by the toplevel make to handle configure
# and setup. It defines a target called startup that when run will init
# the build directory, generate configure from configure.in, create aclocal
# and has rules to run config.status should one of the .in files change.
# Input
# BUILD - The build director
# CONVERTED - List of files output by configure $(BUILD) is prepended
# The caller must provide depends for these files
# It would be a fairly good idea to run this after a cvs checkout.
BUILD=build
.PHONY: startup
startup: configure $(addprefix $(BUILD)/,$(CONVERTED))
configure: aclocal.m4 configure.in
autoconf
aclocal.m4:
aclocal -I buildlib
$(BUILD)/config.status: configure
test -e $(BUILD) || mkdir $(BUILD)
(HERE=`pwd`; cd $(BUILD) && $$HERE/configure)
$(addprefix $(BUILD)/,$(CONVERTED)): $(BUILD)/config.status
(cd $(BUILD) && ./config.status)
|