Subversion Repositories HelenOS

Rev

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

Rev 3005 Rev 3008
1
#
1
#
2
# Copyright (c) 2005 Martin Decky
2
# Copyright (c) 2005 Martin Decky
3
# Copyright (c) 2008 Jiri Svoboda
3
# Copyright (c) 2008 Jiri Svoboda
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
7
# modification, are permitted provided that the following conditions
8
# are met:
8
# are met:
9
#
9
#
10
# - Redistributions of source code must retain the above copyright
10
# - Redistributions of source code must retain the above copyright
11
#   notice, this list of conditions and the following disclaimer.
11
#   notice, this list of conditions and the following disclaimer.
12
# - Redistributions in binary form must reproduce the above copyright
12
# - Redistributions in binary form must reproduce the above copyright
13
#   notice, this list of conditions and the following disclaimer in the
13
#   notice, this list of conditions and the following disclaimer in the
14
#   documentation and/or other materials provided with the distribution.
14
#   documentation and/or other materials provided with the distribution.
15
# - The name of the author may not be used to endorse or promote products
15
# - The name of the author may not be used to endorse or promote products
16
#   derived from this software without specific prior written permission.
16
#   derived from this software without specific prior written permission.
17
#
17
#
18
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
#
28
#
29
 
29
 
30
## Setup toolchain
30
## Setup toolchain
31
#
31
#
32
 
32
 
33
LIBC_PREFIX = ../../lib/libc
33
LIBC_PREFIX = ../../lib/libc
34
SOFTINT_PREFIX = ../../lib/softint
34
SOFTINT_PREFIX = ../../lib/softint
35
include $(LIBC_PREFIX)/Makefile.toolchain
35
include $(LIBC_PREFIX)/Makefile.toolchain
36
include arch/$(ARCH)/Makefile.inc
36
include arch/$(ARCH)/Makefile.inc
37
 
37
 
38
CFLAGS += -I../../srv/kbd/include
38
CFLAGS += -I../../srv/kbd/include
39
 
39
 
40
LIBS = $(LIBC_PREFIX)/libc.a
40
LIBS = $(LIBC_PREFIX)/libc.a
41
 
41
 
42
## Sources
42
## Sources
43
#
43
#
44
 
44
 
45
OUTPUT = debug
45
OUTPUT = debug
46
GENERIC_SOURCES = cmd.c \
46
GENERIC_SOURCES = cmd.c \
47
	fib_synch.c \
-
 
48
	cons.c \
47
	cons.c \
49
	dthread.c \
48
	dthread.c \
50
	breakpoint.c \
49
	breakpoint.c \
51
	main.c
50
	main.c
52
 
51
 
53
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
52
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
54
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
53
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
55
 
54
 
56
.PHONY: all clean depend disasm inc
55
.PHONY: all clean depend disasm inc
57
 
56
 
58
all: inc $(OUTPUT) disasm
57
all: inc $(OUTPUT) disasm
59
 
58
 
60
inc:
59
inc:
61
	ln -sfn ../arch/$(ARCH)/include include/arch
60
	ln -sfn ../arch/$(ARCH)/include include/arch
62
 
61
 
63
-include Makefile.depend
62
-include Makefile.depend
64
 
63
 
65
clean:
64
clean:
66
	-rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend include/arch
65
	-rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend include/arch
67
	find . -name '*.o' -follow -exec rm \{\} \;
66
	find . -name '*.o' -follow -exec rm \{\} \;
68
 
67
 
69
depend:
68
depend:
70
	$(CC) $(DEFS) $(CFLAGS) -M $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend
69
	$(CC) $(DEFS) $(CFLAGS) -M $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend
71
 
70
 
72
$(OUTPUT): $(ARCH_OBJECTS) $(GENERIC_OBJECTS) $(LIBS)
71
$(OUTPUT): $(ARCH_OBJECTS) $(GENERIC_OBJECTS) $(LIBS)
73
	$(LD) -T $(LIBC_PREFIX)/arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENERIC_OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map
72
	$(LD) -T $(LIBC_PREFIX)/arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENERIC_OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map
74
 
73
 
75
disasm:
74
disasm:
76
	$(OBJDUMP) -d $(OUTPUT) >$(OUTPUT).disasm
75
	$(OBJDUMP) -d $(OUTPUT) >$(OUTPUT).disasm
77
 
76
 
78
%.o: %.S
77
%.o: %.S
79
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
78
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
80
 
79
 
81
%.o: %.s
80
%.o: %.s
82
	$(AS) $(AFLAGS) $< -o $@
81
	$(AS) $(AFLAGS) $< -o $@
83
 
82
 
84
%.o: %.c
83
%.o: %.c
85
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
84
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
86
 
85