Changeset 00acd66 in mainline for uspace/app
- Timestamp:
- 2007-06-23T13:34:01Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 72381f1
- Parents:
- 3ae470a
- Location:
- uspace/app
- Files:
-
- 41 moved
-
init/Makefile (moved) (moved from uspace/init/Makefile ) (1 diff)
-
init/init.c (moved) (moved from uspace/init/init.c )
-
init/init.h (moved) (moved from uspace/init/init.h )
-
init/version.c (moved) (moved from uspace/init/version.c )
-
init/version.h (moved) (moved from uspace/init/version.h )
-
klog/Makefile (moved) (moved from uspace/klog/Makefile ) (1 diff)
-
klog/klog.c (moved) (moved from uspace/klog/klog.c )
-
tester/Makefile (moved) (moved from uspace/tester/Makefile ) (1 diff)
-
tester/fault/fault1.c (moved) (moved from uspace/tester/fault/fault1.c )
-
tester/fault/fault1.def (moved) (moved from uspace/tester/fault/fault1.def )
-
tester/fault/fault2.c (moved) (moved from uspace/tester/fault/fault2.c )
-
tester/fault/fault2.def (moved) (moved from uspace/tester/fault/fault2.def )
-
tester/ipc/answer.c (moved) (moved from uspace/tester/ipc/answer.c )
-
tester/ipc/answer.def (moved) (moved from uspace/tester/ipc/answer.def )
-
tester/ipc/connect.c (moved) (moved from uspace/tester/ipc/connect.c )
-
tester/ipc/connect.def (moved) (moved from uspace/tester/ipc/connect.def )
-
tester/ipc/hangup.c (moved) (moved from uspace/tester/ipc/hangup.c )
-
tester/ipc/hangup.def (moved) (moved from uspace/tester/ipc/hangup.def )
-
tester/ipc/register.c (moved) (moved from uspace/tester/ipc/register.c )
-
tester/ipc/register.def (moved) (moved from uspace/tester/ipc/register.def )
-
tester/ipc/send_async.c (moved) (moved from uspace/tester/ipc/send_async.c )
-
tester/ipc/send_async.def (moved) (moved from uspace/tester/ipc/send_async.def )
-
tester/ipc/send_sync.c (moved) (moved from uspace/tester/ipc/send_sync.c )
-
tester/ipc/send_sync.def (moved) (moved from uspace/tester/ipc/send_sync.def )
-
tester/print/print1.c (moved) (moved from uspace/tester/print/print1.c )
-
tester/print/print1.def (moved) (moved from uspace/tester/print/print1.def )
-
tester/tester.c (moved) (moved from uspace/tester/tester.c )
-
tester/tester.h (moved) (moved from uspace/tester/tester.h )
-
tester/thread/thread1.c (moved) (moved from uspace/tester/thread/thread1.c )
-
tester/thread/thread1.def (moved) (moved from uspace/tester/thread/thread1.def )
-
tetris/Makefile (moved) (moved from uspace/tetris/Makefile ) (1 diff)
-
tetris/input.c (moved) (moved from uspace/tetris/input.c ) (1 diff)
-
tetris/input.h (moved) (moved from uspace/tetris/input.h )
-
tetris/pathnames.h (moved) (moved from uspace/tetris/pathnames.h )
-
tetris/scores.c (moved) (moved from uspace/tetris/scores.c )
-
tetris/scores.h (moved) (moved from uspace/tetris/scores.h )
-
tetris/screen.c (moved) (moved from uspace/tetris/screen.c ) (1 diff)
-
tetris/screen.h (moved) (moved from uspace/tetris/screen.h )
-
tetris/shapes.c (moved) (moved from uspace/tetris/shapes.c )
-
tetris/tetris.c (moved) (moved from uspace/tetris/tetris.c )
-
tetris/tetris.h (moved) (moved from uspace/tetris/tetris.h )
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/Makefile
r3ae470a r00acd66 27 27 # 28 28 29 include ../../ version30 include ../ Makefile.config29 include ../../../version 30 include ../../Makefile.config 31 31 32 32 ## Setup toolchain 33 33 # 34 34 35 LIBC_PREFIX = ../ libc36 SOFTINT_PREFIX = ../ softint35 LIBC_PREFIX = ../../lib/libc 36 SOFTINT_PREFIX = ../../lib/softint 37 37 include $(LIBC_PREFIX)/Makefile.toolchain 38 38 39 CFLAGS += -I../ kbd/include39 CFLAGS += -I../../srv/kbd/include 40 40 41 41 LIBS = $(LIBC_PREFIX)/libc.a -
uspace/app/klog/Makefile
r3ae470a r00acd66 30 30 # 31 31 32 LIBC_PREFIX = ../ libc33 SOFTINT_PREFIX = ../ softint32 LIBC_PREFIX = ../../lib/libc 33 SOFTINT_PREFIX = ../../lib/softint 34 34 include $(LIBC_PREFIX)/Makefile.toolchain 35 35 -
uspace/app/tester/Makefile
r3ae470a r00acd66 30 30 # 31 31 32 LIBC_PREFIX = ../ libc33 SOFTINT_PREFIX = ../ softint32 LIBC_PREFIX = ../../lib/libc 33 SOFTINT_PREFIX = ../../lib/softint 34 34 include $(LIBC_PREFIX)/Makefile.toolchain 35 35 36 CFLAGS += -I../ kbd/include36 CFLAGS += -I../../srv/kbd/include 37 37 38 38 LIBS = $(LIBC_PREFIX)/libc.a -
uspace/app/tetris/Makefile
r3ae470a r00acd66 1 LIBC_PREFIX = ../ libc2 SOFTINT_PREFIX = ../ softint1 LIBC_PREFIX = ../../lib/libc 2 SOFTINT_PREFIX = ../../lib/softint 3 3 include $(LIBC_PREFIX)/Makefile.toolchain 4 4 -
uspace/app/tetris/input.c
r3ae470a r00acd66 58 58 59 59 #include <async.h> 60 #include "../ console/console.h"60 #include "../../srv/console/console.h" 61 61 62 62 /* return true iff the given timeval is positive */ -
uspace/app/tetris/screen.c
r3ae470a r00acd66 57 57 #include "screen.h" 58 58 #include "tetris.h" 59 #include "../ console/console.h"59 #include "../../srv/console/console.h" 60 60 61 61 static cell curscreen[B_SIZE]; /* 1 => standout (or otherwise marked) */
Note:
See TracChangeset
for help on using the changeset viewer.
