Subversion Repositories Kolibri OS

Rev

Rev 2109 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2109 Rev 2181
Line 442... Line 442...
442
	mkdir -p .obj.kosilka
442
	mkdir -p .obj.kosilka
Line 443... Line 443...
443
 
443
 
Line 444... Line 444...
444
include Makefile.gcc
444
include Makefile.gcc
445
 
445
 
446
# Rules for shell
446
# Rules for shell
447
shell: .obj.shell/start.o .obj.shell/shell.o .obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o \
447
shell: .obj.shell/start.o .obj.shell/shell.o .obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o .obj.shell/ctype.o \
448
 $(PROGS)/system/shell/kolibri.ld
448
 $(PROGS)/system/shell/kolibri.ld
449
	$(call gcc_link,$(PROGS)/system/shell/kolibri.ld)
449
	$(call gcc_link,$(PROGS)/system/shell/kolibri.ld)
450
.obj.shell/shell.o: $(PROGS)/system/shell/shell.c \
450
.obj.shell/shell.o: $(PROGS)/system/shell/shell.c \
451
 $(PROGS)/system/shell/all.h \
451
 $(PROGS)/system/shell/all.h \
452
 $(PROGS)/system/shell/system/*.h \
452
 $(PROGS)/system/shell/system/*.h \
453
 $(PROGS)/system/shell/cmd/*.c \
453
 $(PROGS)/system/shell/cmd/*.c \
454
 $(PROGS)/system/shell/modules/*.c \
454
 $(PROGS)/system/shell/modules/*.c \
455
 $(PROGS)/system/shell/locale/rus/globals.h \
455
 $(PROGS)/system/shell/locale/rus/globals.h \
456
 Makefile.gcc | .obj.shell
456
 Makefile.gcc | .obj.shell
457
	$(gcc_compile)
457
	$(gcc_compile)
458
.obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o: .obj.shell/%.o: \
458
.obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o .obj.shell/ctype.o: .obj.shell/%.o: \
459
 $(PROGS)/system/shell/system/%.c $(PROGS)/system/shell/system/*.h \
459
 $(PROGS)/system/shell/system/%.c $(PROGS)/system/shell/system/*.h \
460
 Makefile.gcc | .obj.shell
460
 Makefile.gcc | .obj.shell
461
	$(gcc_compile)
461
	$(gcc_compile)