mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
Move "kernel/" to "src/"
This commit is contained in:
parent
7f25b96a2b
commit
756a31f44e
25 changed files with 5 additions and 5 deletions
10
Makefile
10
Makefile
|
@ -4,7 +4,7 @@ ROOTFS = rootfs
|
|||
GRUBCFG = $(ROOTFS)/boot/grub/grub.cfg
|
||||
KERNEL = $(ROOTFS)/boot/tailix.multiboot2
|
||||
|
||||
.PHONY: kernel/tailix.multiboot2
|
||||
.PHONY: src/tailix.multiboot2
|
||||
|
||||
all: run0
|
||||
|
||||
|
@ -16,13 +16,13 @@ run1: $(IMAGE)
|
|||
|
||||
clean:
|
||||
rm -f $(IMAGE) $(KERNEL)
|
||||
make -C kernel clean
|
||||
make -C src clean
|
||||
|
||||
$(IMAGE): $(GRUBCFG) $(KERNEL)
|
||||
grub-mkrescue $(ROOTFS) -o $@
|
||||
|
||||
$(KERNEL): kernel/tailix.multiboot2
|
||||
$(KERNEL): src/tailix.multiboot2
|
||||
cp $< $@
|
||||
|
||||
kernel/tailix.multiboot2:
|
||||
make -C kernel tailix.multiboot2
|
||||
src/tailix.multiboot2:
|
||||
make -C src tailix.multiboot2
|
||||
|
|
0
kernel/.gitignore → src/.gitignore
vendored
0
kernel/.gitignore → src/.gitignore
vendored
Loading…
Reference in a new issue