Makefile, true(1), false(1): ported true and false back to C for simplicity and size
This commit is contained in:
10
Makefile
10
Makefile
@@ -67,11 +67,11 @@ libgetopt: src/getopt-rs/lib.rs
|
||||
$(RUSTC) $(RUSTCFLAGS) --crate-type=lib --crate-name=getopt \
|
||||
-o build/o/libgetopt.rlib src/getopt-rs/lib.rs
|
||||
|
||||
dj: src/dj.c build_dir
|
||||
dj: src/dj.c build
|
||||
$(CC) $(CFLAGS) -o build/bin/dj src/dj.c
|
||||
|
||||
false: src/false.rs build
|
||||
$(RUSTC) $(RUSTFLAGS) -o build/bin/false src/false.rs
|
||||
false: src/false.c build
|
||||
$(CC) $(CFLAGS) -o build/bin/false src/false.c
|
||||
|
||||
fop: src/fop.rs build libgetopt sysexits
|
||||
$(RUSTC) $(RUSTFLAGS) --extern getopt=build/o/libgetopt.rlib \
|
||||
@@ -89,5 +89,5 @@ str: src/str.c build
|
||||
strcmp: src/strcmp.c build
|
||||
$(CC) $(CFLAGS) -o build/bin/strcmp src/strcmp.c
|
||||
|
||||
true: src/true.rs build
|
||||
$(RUSTC) $(RUSTFLAGS) -o build/bin/true src/true.rs
|
||||
true: src/true.c build
|
||||
$(CC) $(CFLAGS) -o build/bin/true src/true.c
|
||||
|
||||
Reference in New Issue
Block a user