File: node-start.mk

package info (click to toggle)
openmsx 0.5.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,976 kB
  • ctags: 10,295
  • sloc: cpp: 63,525; xml: 37,105; sh: 1,403; python: 681; tcl: 207; makefile: 64
file content (26 lines) | stat: -rw-r--r-- 582 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
# $Id: node-start.mk,v 1.2 2004/05/03 01:05:28 mthuurne Exp $
# Should be included at the start of each node.mk file.

# Get name of current directory.
SUBDIR:=$(firstword $(SUBDIRSTACK))
SUBDIRSTACK:=$(wordlist 2,$(words $(SUBDIRSTACK)),$(SUBDIRSTACK))
# Push current directory on directory stack.
DIRSTACK:=$(CURDIR) $(DIRSTACK)
CURDIR:=$(CURDIR)$(SUBDIR)

# Initialise node vars with empty value.
SUBDIRS:=
DIST:=
SRC_HDR:=
SRC_ONLY:=
HDR_ONLY:=
SRC_HDR_:=
SRC_ONLY_:=
HDR_ONLY_:=
SRC_HDR_true:=
SRC_ONLY_true:=
HDR_ONLY_true:=
SRC_HDR_false:=
SRC_ONLY_false:=
HDR_ONLY_false:=