Skip to content

Commit

Permalink
Add one more lib for linking on Linux (#386)
Browse files Browse the repository at this point in the history
More at a567a9f
  • Loading branch information
albertnetymk authored and EliasC committed Apr 16, 2016
1 parent 5ccddac commit f0149b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/front/Makefile.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ i = (text "-I" <+>)
o = (text "-o" <+>)
parent = text ".."

generateMakefile :: [String] ->
generateMakefile :: [String] ->
String -> String -> String -> String -> String -> String -> Doc
generateMakefile classFiles progName compiler ccFlags incPath defines libs =
decl "CC" [compiler]
Expand All @@ -50,10 +50,10 @@ generateMakefile classFiles progName compiler ccFlags incPath defines libs =
empty
$\$
rule target deps
(cc [flags, i inc, i parent, deps, lib, defs, o target])
(cc [flags, i inc, i parent, deps, lib, lib, defs, o target])
$\$
rule bench deps
(cc [benchFlags, i inc, i parent, deps, lib, defs, o target])
(cc [benchFlags, i inc, i parent, deps, lib, lib, defs, o target])
$\$
rule clean empty
(rm [target, target <> dSYM])
Expand Down

0 comments on commit f0149b9

Please sign in to comment.