Fixed some things to do with the build system (extra headers, include paths)

This commit is contained in:
Neil Brown 2009-03-27 19:54:05 +00:00
parent 55ba56cbae
commit 5316bc379f
2 changed files with 3 additions and 1 deletions

View File

@ -225,6 +225,8 @@ TESTS = tocktest
pkginclude_HEADERS = support/tock_support.h
pkginclude_HEADERS += support/tock_support_cif.h
pkginclude_HEADERS += support/tock_support_cppcsp.h
pkginclude_HEADERS += support/tock_intrinsics_arith.h
pkginclude_HEADERS += support/tock_intrinsics_float.h
clean-local:
rm -f obj/*.o obj/*.hi

View File

@ -13,7 +13,7 @@ cCommand inp out extra = "@CC@ @TOCK_CFLAGS@ " ++ tockIncludeFlags ++ " -c -o "
++ " " ++ extra
cAsmCommand :: String -> String -> String -> String
cAsmCommand inp out extra = "@CC@ @TOCK_CFLAGS@ -S -o " ++ out ++ " " ++ inp ++
cAsmCommand inp out extra = "@CC@ @TOCK_CFLAGS@ -S " ++ tockIncludeFlags ++ " -o " ++ out ++ " " ++ inp ++
" " ++ extra
cLinkCommand :: [String] -> String -> String -> String