Skip to content

Commit

Permalink
PureScript: fix Makefile order of variable definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsekut committed Dec 16, 2021
1 parent 1ac0e48 commit 3d87b95
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions impls/purs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ BINS = step0_repl.js step1_read_print.js step2_eval.js step3_env.js \
step4_if_fn_do.js step5_tco.js step6_file.js step7_quote.js \
step8_macros.js step9_try.js stepA_mal.js

OTHER_SRCS = src/Readline.js src/Readline.purs src/Types.purs src/Reader.purs \
src/Printer.purs src/Env.purs src/Core.purs


all: $(BINS)

$(BINS): %.js: src/%.purs $(OTHER_SRCS) node_modules/readline-sync
Expand All @@ -26,9 +30,6 @@ step8_macros.purs = Mal.Step8
step9_try.purs = Mal.Step9
stepA_mal.purs = Mal.StepA

OTHER_SRCS = src/Readline.js src/Readline.purs src/Types.purs src/Reader.purs \
src/Printer.purs src/Env.purs src/Core.purs


clean:
rm -rf step*.js output/*

0 comments on commit 3d87b95

Please sign in to comment.