aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: d75a9df7be4a319da8f1ec6aa8ec2ac902ac7289 (plain)
1
2
3
4
5
6
7
8
9
10
11

all: uskel

clean:
	rm -f uskel.o uskel

uskel.o: uskel.s $(wildcard *.s)
	as $< -o $@

uskel: uskel.o
	ld $@.o -o $@