Changeset 27fd651 in mainline
- Timestamp:
- 2009-05-19T21:48:05Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 83937ccd
- Parents:
- 2c0e5d2
- Location:
- uspace/app/bdsh
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/Makefile
r2c0e5d2 r27fd651 34 34 LIBC_PREFIX = ../../lib/libc 35 35 SOFTINT_PREFIX = ../../lib/softint 36 LIBBLOCK_PREFIX = ../../lib/libblock 36 37 37 38 include $(LIBC_PREFIX)/Makefile.toolchain 38 39 39 CFLAGS += -I../../srv/kbd/include 40 CFLAGS += -I../../srv/kbd/include -I$(LIBBLOCK_PREFIX) 40 41 41 LIBS = $(LIB C_PREFIX)/libc.a42 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBC_PREFIX)/libc.a 42 43 DEFS += -DRELEASE=$(RELEASE) 43 44 … … 52 53 cmds/modules/mkdir/ \ 53 54 cmds/modules/rm/ \ 55 cmds/modules/bdd/ \ 54 56 cmds/modules/cat/ \ 55 57 cmds/modules/touch/ \ … … 69 71 cmds/modules/mkdir/mkdir.c \ 70 72 cmds/modules/rm/rm.c \ 73 cmds/modules/bdd/bdd.c \ 71 74 cmds/modules/cat/cat.c \ 72 75 cmds/modules/touch/touch.c \ -
uspace/app/bdsh/cmds/modules/modules.h
r2c0e5d2 r27fd651 21 21 #include "mkdir/entry.h" 22 22 #include "rm/entry.h" 23 #include "bdd/entry.h" 23 24 #include "cat/entry.h" 24 25 #include "touch/entry.h" … … 39 40 #include "mkdir/mkdir_def.h" 40 41 #include "rm/rm_def.h" 42 #include "bdd/bdd_def.h" 41 43 #include "cat/cat_def.h" 42 44 #include "touch/touch_def.h"
Note:
See TracChangeset
for help on using the changeset viewer.