diff options
| author | Joel Martin <github@martintribe.org> | 2015-02-28 10:35:04 -0600 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2015-02-28 10:35:04 -0600 |
| commit | 2ab1e5845c213a9951bee46a0c991202e6c46d5c (patch) | |
| tree | ac1e5d898523bb892181804aa64f22ec4f4b9032 /rust | |
| parent | 1218ce98a40ef243824fed0efce7160a10fe5f36 (diff) | |
| download | mal-2ab1e5845c213a9951bee46a0c991202e6c46d5c.tar.gz mal-2ab1e5845c213a9951bee46a0c991202e6c46d5c.zip | |
Multiple: interop enhancements.
Diffstat (limited to 'rust')
| -rw-r--r-- | rust/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/rust/Makefile b/rust/Makefile index 537dac5..6910356 100644 --- a/rust/Makefile +++ b/rust/Makefile @@ -8,19 +8,22 @@ SOURCES = $(SOURCES_BASE) $(SOURCES_LISP) ##################### -SRCS = step0_repl.rs step1_read_print.rs step2_eval.rs step3_env.rs \ +SRCS = step1_read_print.rs step2_eval.rs step3_env.rs \ step4_if_fn_do.rs step5_tco.rs step6_file.rs step7_quote.rs \ step8_macros.rs step9_try.rs stepA_interop.rs BINS = $(SRCS:%.rs=target/%) ##################### -all: $(BINS) mal +all: mal mal: ${SOURCES_BASE} $(word $(words ${SOURCES_LISP}),${SOURCES_LISP}) cargo build cp $(word $(words ${BINS}),${BINS}) $@ +#$(BINS): target/%: src/%.rs +# cargo build $* + clean: cargo clean rm -f mal |
