Subversion Repositories Kolibri OS

Rev

Rev 9667 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9667 Rev 9696
Line 7... Line 7...
7
OBJS = {}
7
OBJS = {}
Line 8... Line 8...
8
 
8
 
9
function compile_tcc(input, output)
9
function compile_tcc(input, output)
10
  if not output then output = '%B.o' end
10
  if not output then output = '%B.o' end
11
  tup.append_table(OBJS, 
11
  tup.append_table(OBJS, 
12
        tup.foreach_rule(input, TCC .. " -c " .. CFLAGS .. " %f -o %o"), output
12
        tup.foreach_rule(input, TCC .. " -c " .. CFLAGS .. " %f -o %o", output)
13
  )
13
  )
Line 14... Line 14...
14
end
14
end
15
 
15