10 lines
101 B
Makefile
10 lines
101 B
Makefile
TARGETS=const format map regexp vector
|
|
|
|
all: ${TARGETS}
|
|
|
|
%: %.rs
|
|
rustc $<
|
|
|
|
clean:
|
|
rm -f ${TARGETS}
|