source: mainline/uspace/dist/src/c/demos/tetris/build@ f6b2a76b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since f6b2a76b was c8f70eb, checked in by Petr Koupy <petr.koupy@…>, 14 years ago

pcc incompatible inline assembly rewritten in a more agreeable fashion.

  • Property mode set to 100644
File size: 488 bytes
Line 
1cc -D__PCC__ -I/inc/c -E -o scores.i scores.c
2cc -D__PCC__ -I/inc/c -E -o screen.i screen.c
3cc -D__PCC__ -I/inc/c -E -o shapes.i shapes.c
4cc -D__PCC__ -I/inc/c -E -o tetris.i tetris.c
5
6cc -S -o scores.s scores.i
7cc -S -o screen.s screen.i
8cc -S -o shapes.s shapes.i
9cc -S -o tetris.s tetris.i
10
11as -o scores.o scores.s
12as -o screen.o screen.s
13as -o shapes.o shapes.s
14as -o tetris.o tetris.s
15
16ld -T /inc/_link.ld -o tetris_ scores.o screen.o shapes.o tetris.o /lib/libc.a /lib/libsoftint.a
Note: See TracBrowser for help on using the repository browser.