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 2180
Line 453... Line 453...
453
	mkdir -p .obj.kosilka
453
	mkdir -p .obj.kosilka
Line 454... Line 454...
454
 
454
 
Line 455... Line 455...
455
include Makefile.gcc
455
include Makefile.gcc
456
 
456
 
457
# Rules for shell
457
# Rules for shell
458
shell: .obj.shell/start.o .obj.shell/shell.o .obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o \
458
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 \
459
 $(PROGS)/system/shell/kolibri.ld
459
 $(PROGS)/system/shell/kolibri.ld
460
	$(call gcc_link,$(PROGS)/system/shell/kolibri.ld)
460
	$(call gcc_link,$(PROGS)/system/shell/kolibri.ld)
461
.obj.shell/shell.o: $(PROGS)/system/shell/shell.c \
461
.obj.shell/shell.o: $(PROGS)/system/shell/shell.c \
462
 $(PROGS)/system/shell/all.h \
462
 $(PROGS)/system/shell/all.h \
463
 $(PROGS)/system/shell/system/*.h \
463
 $(PROGS)/system/shell/system/*.h \
464
 $(PROGS)/system/shell/cmd/*.c \
464
 $(PROGS)/system/shell/cmd/*.c \
465
 $(PROGS)/system/shell/modules/*.c \
465
 $(PROGS)/system/shell/modules/*.c \
466
 $(PROGS)/system/shell/locale/rus/globals.h \
466
 $(PROGS)/system/shell/locale/rus/globals.h \
467
 Makefile.gcc | .obj.shell
467
 Makefile.gcc | .obj.shell
468
	$(gcc_compile)
468
	$(gcc_compile)
469
.obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o: .obj.shell/%.o: \
469
.obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o .obj.shell/ctype.o: .obj.shell/%.o: \
470
 $(PROGS)/system/shell/system/%.c $(PROGS)/system/shell/system/*.h \
470
 $(PROGS)/system/shell/system/%.c $(PROGS)/system/shell/system/*.h \
471
 Makefile.gcc | .obj.shell
471
 Makefile.gcc | .obj.shell
472
	$(gcc_compile)
472
	$(gcc_compile)