Change of name.

This commit is contained in:
Nicolás Ortega Froysa
2018-03-11 17:47:43 +01:00
parent 06aa177eef
commit f51e10870b
3 changed files with 9 additions and 9 deletions

View File

@ -32,7 +32,7 @@ LIBS=-lgcc
# Binary variables
OBJS=src/kernel/arch/$(ARCH)/boot.o src/kernel/kernel.o src/kernel/arch/$(ARCH)/tty.o
untrue.bin: $(OBJS)
colonel.bin: $(OBJS)
$(CC) -T src/kernel/arch/$(ARCH)/linker.ld -o $@ $(LDFLAGS) $^ $(LIBS)
%.o: %.c
@ -42,9 +42,9 @@ untrue.bin: $(OBJS)
$(AS) $(AFLAGS) $< -o $@
.PHONY: all build-iso clean clean-all
all: untrue.bin
all: colonel.bin
build-iso: untrue.iso
build-iso: colonel.iso
clean:
rm -f $(OBJS)
@ -53,7 +53,7 @@ clean:
clean-all: clean
rm -f *.iso *.bin
untrue.iso: untrue.bin
colonel.iso: colonel.bin
mkdir -p isodir/boot/grub/
cp configs/grub.cfg isodir/boot/grub/
cp $< isodir/boot/