smalltalk-tng

view experiments/assembly/Makefile @ 321:c4a0718c2d3c

Sketch of dependencies
author Tony Garnock-Jones <tonygarnockjones@gmail.com>
date Sat Oct 08 15:36:03 2011 -0400 (7 months ago)
parents 387b34725243
children
line source
1 TARGETS=tiny tiny.elf tiny.elf.stripped jonesforth
3 all: $(TARGETS)
5 jonesforth: jonesforth.S
6 gcc -m32 -nostdlib -static -Wl,-Ttext,0 -o $@ $<
8 %: %.S elfheader.S
9 gcc -Wl,--oformat -Wl,binary -nostdlib -o $@ $<
11 tiny.elf.stripped: tiny.elf
12 cp tiny.elf tiny.elf.stripped
13 strip tiny.elf.stripped
15 tiny.elf: tiny.S elfheader.S
16 gcc -nostdlib -o tiny.elf tiny.S
18 clean:
19 rm -f $(TARGETS)