From caa0ddd2f95154659393e16343e246bfe24e44a3 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Tue, 5 Feb 2008 22:47:59 +0000 Subject: [PATCH] Fixed a mistake in Makefile.am where one of the lines was not properly added to CompilerCommands --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 8d986fb..8d52b1a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -52,7 +52,7 @@ CompilerCommands.hs: Makefile echo -e 'cCommand inp out = "$(CC) $(TOCK_CFLAGS) -x c -c -o " ++ out ++ " " ++ inp\n' >> CompilerCommands.hs echo -e 'cAsmCommand :: String -> String -> String\n' >> CompilerCommands.hs echo -e 'cAsmCommand inp out = "$(CC) $(TOCK_CFLAGS) -x c -S -o " ++ out ++ " " ++ inp\n' >> CompilerCommands.hs - echo -e 'krocLinkCommand :: String -> [String] -> String -> String\n' + echo -e 'krocLinkCommand :: String -> [String] -> String -> String\n' >> CompilerCommands.hs echo -e 'krocLinkCommand wrapper files out = "kroc -o " ++ out ++ " " ++ wrapper ++ " " ++ (concat (intersperse " " files)) ++ " -lcif"\n' >> CompilerCommands.hs echo -e 'cxxCommand :: String -> String -> String\n' >> CompilerCommands.hs echo -e 'cxxCommand inp out = "$(CXX) $(TOCK_CXXFLAGS) -x c++ -o " ++ out ++ " " ++ inp ++ " $(TOCK_CXXLDFLAGS)"\n' >> CompilerCommands.hs