aboutsummaryrefslogtreecommitdiffstats
path: root/rust/Makefile
blob: 7efb89c3d038943a0c0d7946e528aee7d409ff68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: debug

debug: libpintos.a
	cargo rustc -- -C link-arg= -L.

release: libpintos.a
	cargo rustc --release -- -C link-arg= -L.

libpintos.a:
	make -C ../src/examples libc.a
	cp ../src/examples/libc.a libpintos.a

clean:
	cargo clean

.PHONY: all clean debug release libpintos.a