Subversion Repositories HelenOS

Rev

Rev 4354 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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