Subversion Repositories HelenOS

Rev

Rev 3811 | Rev 4168 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3265 post 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
 
32
include ../../../version
33
 
34
LIBC_PREFIX = ../../lib/libc
35
SOFTINT_PREFIX = ../../lib/softint
3882 decky 36
 
3265 post 37
include $(LIBC_PREFIX)/Makefile.toolchain
38
 
3304 post 39
CFLAGS += -I../../srv/kbd/include
3265 post 40
 
41
LIBS = $(LIBC_PREFIX)/libc.a
3882 decky 42
DEFS += -DRELEASE=$(RELEASE)
3265 post 43
 
44
PROGRAM = bdsh
45
 
46
# Any directory that cleaning targets should know about
47
SUBDIRS = \
48
	./ \
49
	cmds/ \
50
	cmds/modules/ \
51
	cmds/modules/help/ \
3277 post 52
	cmds/modules/mkdir/ \
53
	cmds/modules/rm/ \
54
	cmds/modules/cat/ \
55
	cmds/modules/touch/ \
56
	cmds/modules/ls/ \
3371 post 57
	cmds/modules/pwd/ \
3420 post 58
	cmds/modules/sleep/ \
59
	cmds/modules/cp/ \
3265 post 60
	cmds/builtins/ \
3811 post 61
	cmds/builtins/exit/\
3374 post 62
	cmds/builtins/cd/
3265 post 63
 
64
SOURCES = \
65
	cmds/modules/help/help.c \
3277 post 66
	cmds/modules/mkdir/mkdir.c \
67
	cmds/modules/rm/rm.c \
68
	cmds/modules/cat/cat.c \
69
	cmds/modules/touch/touch.c \
70
	cmds/modules/ls/ls.c \
3371 post 71
	cmds/modules/pwd/pwd.c \
3420 post 72
	cmds/modules/sleep/sleep.c \
73
	cmds/modules/cp/cp.c \
3811 post 74
	cmds/builtins/exit/exit.c \
3265 post 75
	cmds/builtins/cd/cd.c \
76
	cmds/mod_cmds.c \
77
	cmds/builtin_cmds.c \
78
	errors.c \
79
	input.c \
80
	util.c \
81
	exec.c \
82
	scli.c
83
 
3374 post 84
CFLAGS += -I. -Icmds/ -Icmds/builtins -Icmds/modules
3265 post 85
 
86
OBJECTS = $(SOURCES:.c=.o)
87
 
88
# For easy cleaning, *.o is already handled
89
CLEANDIRS := $(addsuffix *~,$(SUBDIRS))
90
CLEANDIRS += $(addsuffix *.bak,$(SUBDIRS))
91
CLEANDIRS += $(addsuffix *.tmp,$(SUBDIRS))
92
CLEANDIRS += $(addsuffix *.out,$(SUBDIRS))
93
CLEANDIRS += $(addsuffix *.d,$(SUBDIRS))
94
CLEANDIRS += $(addsuffix *.gch,$(SUBDIRS) )
95
 
96
%.o: %.S
97
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
98
 
99
%.o: %.s
100
	$(AS) $(AFLAGS) $< -o $@
101
 
102
%.o: %.c
103
	$(CC) $(CFLAGS) $(INC) -c $< -o $@
3299 post 104
	@$(CC) -M $(CFLAGS) $(INC) $*.c > $*.d
3265 post 105
 
106
$(PROGRAM): $(OBJECTS) $(LIBS)
3882 decky 107
	$(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(PROGRAM).map
3265 post 108
 
109
# Everything else is a phony target
110
.PHONY: all clean distclean depend disasm
111
 
112
all: $(PROGRAM) disasm
113
 
114
clean:
115
	@-rm -f $(OBJECTS)
116
	@-rm -f $(PROGRAM)
117
	@-rm -f $(PROGRAM).map
118
	@-rm -f $(PROGRAM).disasm
119
	@-rm -f $(CLEANDIRS)
120
 
121
depend:
122
	@echo ''
123
 
124
disasm:
125
	$(OBJDUMP) -d $(PROGRAM) >$(PROGRAM).disasm
126
 
127
distclean: clean
128
 
129
# Do not delete - dependencies
130
-include $(OBJECTS:.o=.d)