diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-02-06 20:47:23 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-02-06 20:47:23 -0500 |
commit | a33ccc75788bd34fd6b61574b096fde2d85b7fd8 (patch) | |
tree | 2aa12e67b820ee44300da665773b3efe254caa0d /Makefile.am | |
parent | 770a9fc47510f4198e3e68db65d2f9286c20b8b3 (diff) |
More fixes for NetBSD support
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index b5c19b79..ecb84ca0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,15 +33,15 @@ src/urweb.mlb: src/prefix.mlb src/sources src/suffix.mlb | sed 's/^\(.*\).lex$$/\1.mlton.lex.sml/' \ >$@ -%.mlton.lex: %.lex +src/urweb.mlton.lex: src/urweb.lex cp $< $@ -%.mlton.grm: %.grm +src/urweb.mlton.grm: src/urweb.grm cp $< $@ -%.mlton.lex.sml: %.mlton.lex +src/urweb.mlton.lex.sml: src/urweb.mlton.lex mllex $< -%.mlton.grm.sig %.mlton.grm.sml: %.mlton.grm +src/urweb.mlton.grm.sig src/urweb.mlton.grm.sml: src/urweb.mlton.grm mlyacc $< MLTON := mlton |