File: configure.mak

package info (click to toggle)
apt 0.3.19
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,328 kB
  • ctags: 4,573
  • sloc: cpp: 23,660; sh: 2,279; makefile: 369; perl: 209
file content (29 lines) | stat: -rw-r--r-- 998 bytes parent folder | download | duplicates (2)
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
27
28
29
# -*- 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
#  BUILDDIR - The build directory
#  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.
BUILDDIR=build

.PHONY: startup
startup: configure $(BUILDDIR)/config.status $(addprefix $(BUILDDIR)/,$(CONVERTED)) 

configure: aclocal.m4 configure.in
	autoconf

aclocal.m4: $(wildcard buildlib/*.m4)
	aclocal -I buildlib
	
$(BUILDDIR)/config.status: configure
	/usr/bin/test -e $(BUILDDIR) || mkdir $(BUILDDIR)	
	(HERE=`pwd`; cd $(BUILDDIR) && $$HERE/configure)
	
$(addprefix $(BUILDDIR)/,$(CONVERTED)):
	(cd $(BUILDDIR) && ./config.status)