Rev 2938 | Rev 3008 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2911 | svoboda | 1 | # |
2 | # Copyright (c) 2005 Martin Decky |
||
2923 | svoboda | 3 | # Copyright (c) 2008 Jiri Svoboda |
2911 | svoboda | 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 |
||
8 | # are met: |
||
9 | # |
||
10 | # - Redistributions of source code must retain the above copyright |
||
11 | # notice, this list of conditions and the following disclaimer. |
||
12 | # - Redistributions in binary form must reproduce the above copyright |
||
13 | # notice, this list of conditions and the following disclaimer in the |
||
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 |
||
16 | # derived from this software without specific prior written permission. |
||
17 | # |
||
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 |
||
20 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
21 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
22 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
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 |
||
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 |
||
27 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
28 | # |
||
29 | |||
30 | ## Setup toolchain |
||
31 | # |
||
32 | |||
33 | LIBC_PREFIX = ../../lib/libc |
||
34 | SOFTINT_PREFIX = ../../lib/softint |
||
35 | include $(LIBC_PREFIX)/Makefile.toolchain |
||
2923 | svoboda | 36 | include arch/$(ARCH)/Makefile.inc |
2911 | svoboda | 37 | |
38 | CFLAGS += -I../../srv/kbd/include |
||
39 | |||
40 | LIBS = $(LIBC_PREFIX)/libc.a |
||
41 | |||
42 | ## Sources |
||
43 | # |
||
44 | |||
45 | OUTPUT = debug |
||
2923 | svoboda | 46 | GENERIC_SOURCES = cmd.c \ |
2935 | svoboda | 47 | fib_synch.c \ |
2936 | svoboda | 48 | cons.c \ |
2938 | svoboda | 49 | dthread.c \ |
3005 | svoboda | 50 | breakpoint.c \ |
2911 | svoboda | 51 | main.c |
52 | |||
2923 | svoboda | 53 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) |
54 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) |
||
2911 | svoboda | 55 | |
2923 | svoboda | 56 | .PHONY: all clean depend disasm inc |
2911 | svoboda | 57 | |
2923 | svoboda | 58 | all: inc $(OUTPUT) disasm |
2911 | svoboda | 59 | |
2923 | svoboda | 60 | inc: |
61 | ln -sfn ../arch/$(ARCH)/include include/arch |
||
62 | |||
2911 | svoboda | 63 | -include Makefile.depend |
64 | |||
65 | clean: |
||
2924 | svoboda | 66 | -rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend include/arch |
2935 | svoboda | 67 | find . -name '*.o' -follow -exec rm \{\} \; |
2911 | svoboda | 68 | |
69 | depend: |
||
2923 | svoboda | 70 | $(CC) $(DEFS) $(CFLAGS) -M $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend |
2911 | svoboda | 71 | |
2923 | svoboda | 72 | $(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 |
||
2911 | svoboda | 74 | |
75 | disasm: |
||
76 | $(OBJDUMP) -d $(OUTPUT) >$(OUTPUT).disasm |
||
77 | |||
78 | %.o: %.S |
||
79 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
||
80 | |||
81 | %.o: %.s |
||
82 | $(AS) $(AFLAGS) $< -o $@ |
||
83 | |||
84 | %.o: %.c |
||
85 | $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ |