source: mainline/uspace/app/bdsh/Makefile@ cf95bc0

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since cf95bc0 was 046f342, checked in by Jakub Jermar <jakub@…>, 16 years ago

Add a primitive 'mv' command. This 'mv' is a mere wrapper around rename() and
as such cannot move files across file systems and doesn't work on FAT (because
FAT does not support hardlinks).

  • Property mode set to 100644
File size: 3.7 KB
Line 
1# Copyright (c) 2005, Martin Decky
2# All rights reserved.
3# Copyright (c) 2008, Tim Post <tinkertim@gmail.com>
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are met:
8#
9# Redistributions of source code must retain the above copyright notice, this
10# list of conditions and the following disclaimer.
11#
12# Redistributions in binary form must reproduce the above copyright notice,
13# this list of conditions and the following disclaimer in the documentation
14# and/or other materials provided with the distribution.
15#
16# Neither the name of the original program's authors nor the names of its
17# contributors may be used to endorse or promote products derived from this
18# software without specific prior written permission.
19#
20# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30# POSSIBILITY OF SUCH DAMAGE.
31
32include ../../../version
33
34LIBC_PREFIX = ../../lib/libc
35SOFTINT_PREFIX = ../../lib/softint
36
37include $(LIBC_PREFIX)/Makefile.toolchain
38
39CFLAGS += -I../../srv/kbd/include
40
41LIBS = $(LIBC_PREFIX)/libc.a
42DEFS += -DRELEASE=$(RELEASE)
43
44PROGRAM = bdsh
45
46# Any directory that cleaning targets should know about
47SUBDIRS = \
48 ./ \
49 cmds/ \
50 cmds/modules/ \
51 cmds/modules/help/ \
52 cmds/modules/mkdir/ \
53 cmds/modules/rm/ \
54 cmds/modules/cat/ \
55 cmds/modules/touch/ \
56 cmds/modules/ls/ \
57 cmds/modules/pwd/ \
58 cmds/modules/sleep/ \
59 cmds/modules/cp/ \
60 cmds/modules/mv/ \
61 cmds/modules/kcon/ \
62 cmds/builtins/ \
63 cmds/builtins/exit/\
64 cmds/builtins/cd/
65
66SOURCES = \
67 cmds/modules/help/help.c \
68 cmds/modules/mkdir/mkdir.c \
69 cmds/modules/rm/rm.c \
70 cmds/modules/cat/cat.c \
71 cmds/modules/touch/touch.c \
72 cmds/modules/ls/ls.c \
73 cmds/modules/pwd/pwd.c \
74 cmds/modules/sleep/sleep.c \
75 cmds/modules/cp/cp.c \
76 cmds/modules/mv/mv.c \
77 cmds/modules/kcon/kcon.c \
78 cmds/builtins/exit/exit.c \
79 cmds/builtins/cd/cd.c \
80 cmds/mod_cmds.c \
81 cmds/builtin_cmds.c \
82 errors.c \
83 input.c \
84 util.c \
85 exec.c \
86 scli.c
87
88CFLAGS += -I. -Icmds/ -Icmds/builtins -Icmds/modules
89
90OBJECTS = $(SOURCES:.c=.o)
91
92# For easy cleaning, *.o is already handled
93CLEANDIRS := $(addsuffix *~,$(SUBDIRS))
94CLEANDIRS += $(addsuffix *.bak,$(SUBDIRS))
95CLEANDIRS += $(addsuffix *.tmp,$(SUBDIRS))
96CLEANDIRS += $(addsuffix *.out,$(SUBDIRS))
97CLEANDIRS += $(addsuffix *.d,$(SUBDIRS))
98CLEANDIRS += $(addsuffix *.gch,$(SUBDIRS) )
99
100%.o: %.S
101 $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
102
103%.o: %.s
104 $(AS) $(AFLAGS) $< -o $@
105
106%.o: %.c
107 $(CC) $(CFLAGS) $(INC) -c $< -o $@
108 @$(CC) -M $(CFLAGS) $(INC) $*.c > $*.d
109
110$(PROGRAM): $(OBJECTS) $(LIBS)
111 $(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(PROGRAM).map
112
113# Everything else is a phony target
114.PHONY: all clean distclean depend disasm
115
116all: $(PROGRAM) disasm
117
118clean:
119 @-rm -f $(OBJECTS)
120 @-rm -f $(PROGRAM)
121 @-rm -f $(PROGRAM).map
122 @-rm -f $(PROGRAM).disasm
123 @-rm -f $(CLEANDIRS)
124
125depend:
126 @echo ''
127
128disasm:
129 $(OBJDUMP) -d $(PROGRAM) >$(PROGRAM).disasm
130
131distclean: clean
132
133# Do not delete - dependencies
134-include $(OBJECTS:.o=.d)
Note: See TracBrowser for help on using the repository browser.