@@ -9,13 +9,13 @@ OPT := 1
9
9
# Verbosity off by default
10
10
V :=#
11
11
12
- TAS = $(abspath .) /bin/tas
13
- TLD = $(abspath .) /bin/tld
12
+ tas = $(abspath .) /bin/tas
13
+ tld = $(abspath .) /bin/tld
14
14
15
- export TAS
16
- export TLD
15
+ export tas
16
+ export tld
17
17
18
- $(TAS ) $(TLD ) : $(TOP ) /Makefile
18
+ $(tas ) $(tld ) : $(TOP ) /Makefile
19
19
mkdir -p $(@D )
20
20
$(MAKE ) BUILDDIR=$(@D ) -f $< $(@F )
21
21
@@ -99,22 +99,22 @@ include $(DESIGN).md
99
99
100
100
# force remaking %.texe because we don't have actual dependency information here
101
101
FORCE :
102
- % .texe : % .tas.cpp FORCE | $(TAS ) $(TLD )
102
+ % .texe : % .tas.cpp FORCE | $(tas ) $(tld )
103
103
@@$(MAKESTEP ) -n " Recursively building $@ from $< ... "
104
- $(MAKE ) -s -C $(<D ) $@ TAS =$(TAS ) TLD =$(TLD )
104
+ $(MAKE ) -s -C $(<D ) $@ tas =$(tas ) tld =$(tld )
105
105
cp -p $(<D ) /$(@F ) $@
106
106
@@$(MAKESTEP ) done
107
107
108
- % .texe : % .tas FORCE | $(TAS ) $(TLD )
108
+ % .texe : % .tas FORCE | $(tas ) $(tld )
109
109
@@$(MAKESTEP ) -n " Recursively building $@ from $< ... "
110
- $(MAKE ) -s -C $(<D ) $@ TAS =$(TAS ) TLD =$(TLD )
110
+ $(MAKE ) -s -C $(<D ) $@ tas =$(tas ) tld =$(tld )
111
111
cp -p $(<D ) /$(@F ) $@
112
112
@@$(MAKESTEP ) done
113
113
114
- gen/% .memh : % .texe | $(TAS )
114
+ gen/% .memh : % .texe | $(tas )
115
115
mkdir -p $(@D )
116
116
@# TODO document / hoist start address
117
- $(TAS ) -vd $< | $(TAS ) -p format.memh.offset=0x1000 -p format.memh.explicit=1 -fmemh -o $@ -
117
+ $(tas ) -vd $< | $(tas ) -p format.memh.offset=0x1000 -p format.memh.explicit=1 -fmemh -o $@ -
118
118
119
119
gen/% .mem : gen/% .memh
120
120
cp -p $< $@
0 commit comments