diff --git a/Makefile b/Makefile index 6a5aea7..80f7cab 100644 --- a/Makefile +++ b/Makefile @@ -9,8 +9,6 @@ LIB_JULIOS = target/x86_64-julios/debug/libjulios.a GRUB_CFG = grub/grub.cfg -SRC = src/lib.rs - all: $(ISO) run: $(ISO) @@ -31,7 +29,7 @@ install: $(KERNEL) $(GRUB_CFG) $(KERNEL): $(LIB_JULIOS) $(LINKER_SCRIPT) $(BOOT_OBJS) ld -n -T $(LINKER_SCRIPT) -o $(KERNEL) $(BOOT_OBJS) $(LIB_JULIOS) -$(LIB_JULIOS): $(SRC) +$(LIB_JULIOS): cargo build @@ -44,4 +42,4 @@ clean: $(RM) julios.iso $(RM) -r iso -.PHONY: $(INSTALL_ROOT) install clean all run debug +.PHONY: $(INSTALL_ROOT) install clean all run debug $(LIB_JULIOS)