We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentc5fb060 commit1b8bffeCopy full SHA for 1b8bffe
Makefile
@@ -17,8 +17,14 @@ CARGO := rustup run nightly cargo
17
18
all: .cargo/config
19
20
+libc-test: .cargo/config
21
+cd libc/libc-test&& ../../cargo-minix build --target i586-unknown-minix
22
+
23
clean:
-rm -rf deps rust/target .cargo
24
+rm -rf deps .cargo
25
+cd libc&& cargo clean
26
+cd libc/libc-test&& cargo clean
27
+cd rust&& cargo clean
28
29
update-submodules:
30
git submodule update --init rust libc
@@ -45,4 +51,4 @@ deps/pth-2.0.7nb4.tgz:
45
51
mkdir -p deps
46
52
cd deps&& wget https://minix3.org/pkgsrc/packages/3.4.0/i386/All/pth-2.0.7nb4.tgz
47
53
48
-.PHONY: all clean update-submodules libstd
54
+.PHONY: all clean update-submodules libstd libc-test