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