File: rules.sps

package info (click to toggle)
sfind 1.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,404 kB
  • ctags: 2,727
  • sloc: ansic: 16,006; sh: 3,297; makefile: 106
file content (82 lines) | stat: -rw-r--r-- 2,973 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#ident "@(#)rules.sps	1.12 06/07/07 "
###########################################################################
# Written 2005 by J. Schilling
###########################################################################
#
# Rules for wrapping around other make systems
#
###########################################################################
# Copyright (c) J. Schilling
###########################################################################
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License").  You may not use this file except in compliance
# with the License.
#
# See the file CDDL.Schily.txt in this distribution for details.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file CDDL.Schily.txt from this distribution.
###########################################################################
PTARGET=	$(TARGET)
SRCFILE=	$(TARGET)
###########################################################################

_INSMODEI=	$(_UNIQ)$(INSMODE)
__INSMODEI=	$(_INSMODEI:$(_UNIQ)=$(INSMODEF))
INSMODEI=	$(__INSMODEI:$(_UNIQ)%=%)

#all:		$(SRCFILE)

###########################################################################
include		$(SRCROOT)/$(RULESDIR)/rules.clr
#include		$(SRCROOT)/$(RULESDIR)/rules.ins
include		$(SRCROOT)/$(RULESDIR)/rules.tag
include		$(SRCROOT)/$(RULESDIR)/rules.hlp
include		$(SRCROOT)/$(RULESDIR)/dummy.dep
include		$(SRCROOT)/$(RULESDIR)/rules.tpk
###########################################################################

all: $(ARCHDIR)/config.status $(POSTCONFIG)
	cd $(ARCHDIR)/; $(MAKE) $(MAKEMACS) $(MAKEOPTS) $@

install: all
	cd $(ARCHDIR)/; DESTDIR=$(DEST_DIR) $(MAKE) $(MAKEMACS) $(MAKEOPTS) DESTDIR=$(DEST_DIR) $@

#
# Hack until the <mach>-<os>-*cc.rul files are updated
#
_HCC_COM=	$(OARCH:%-gcc=gcc)
HCC_COM=	$(_HCC_COM:%-cc=cc)

_CC_COM=	$(_UNIQ)$(CC_COM)
__CC_COM=	$(_CC_COM:$(_UNIQ)=$(HCC_COM))
XCC_COM=	$(__CC_COM:$(_UNIQ)%=%)

_CONF_SCRIPT=	$(_UNIQ)$(CONF_SCRIPT)
__CONF_SCRIPT=	$(_CONF_SCRIPT:$(_UNIQ)=configure)
CONFSCRIPT=	$(__CONF_SCRIPT:$(_UNIQ)%=%)

#
# Note: $(___CONF_SCR:$(_UNIQ)=:) is not accepted by Sun make
# because of a parser bug. We thus use "true".
#
COLON=:
_CONF_SCR=	$(CONFSCRIPT:none=)
__CONF_SCR=	$(_CONF_SCR:%=../../$(SRC_DIR)/%)
___CONF_SCR=	$(_UNIQ)$(__CONF_SCR)
____CONF_SCR=	$(___CONF_SCR:$(_UNIQ)=true)
PCONFSCRIPT=	$(____CONF_SCR:$(_UNIQ)%=%)

_LNDIR_PRG=	$(_UNIQ)$(LNDIR_PRG)
__LNDIR_PRG=	$(_LNDIR_PRG:$(_UNIQ)=:)
LNDIRPRG=	$(__LNDIR_PRG:$(_UNIQ)%=%)

#$(ARCHDIR)/config.status: $(SRC_DIR)/$(CONFSCRIPT)

			# Expands to: $(SRC_DIR)/$(CONFSCRIPT) is non-empty
$(ARCHDIR)/config.status: $(_CONF_SCR:%=$(SRC_DIR)/%)
	mkdir -p $(ARCHDIR)/; cd $(ARCHDIR)/; \
	$(LNDIRPRG) ../../$(SRC_DIR)/; \
	CC="$(XCC_COM)" CFLAGS="$(CFLAGS)" MAKE="$(MAKE)" $(MAKEMACS) $(PCONFSCRIPT) $(CONF_OPTS) && \
	( [ ! -f config.status ] && touch config.status || : )