15 lines
395 B
Makefile
15 lines
395 B
Makefile
![]() |
netutils: \
|
||
|
filesystem/bin/dhcpd \
|
||
|
filesystem/bin/dns \
|
||
|
filesystem/bin/httpd \
|
||
|
filesystem/bin/irc \
|
||
|
filesystem/bin/nc \
|
||
|
filesystem/bin/ntp \
|
||
|
filesystem/bin/telnetd \
|
||
|
filesystem/bin/wget
|
||
|
|
||
|
filesystem/bin/%: programs/netutils/Cargo.toml programs/netutils/src/%/**.rs $(BUILD)/libstd.rlib
|
||
|
mkdir -p filesystem/bin
|
||
|
$(CARGO) rustc --manifest-path $< --bin $* $(CARGOFLAGS) -o $@
|
||
|
$(STRIP) $@
|