We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b3af40 commit 182e369Copy full SHA for 182e369
Makefile
@@ -28,6 +28,8 @@ build-cross-gcc: $(GCC_SRC)
28
$(GCC_SRC)/configure --target=$(TARGET) --prefix="$(CROSSDIR)" --disable-nls --enable-languages=c --without-headers && \
29
make all-gcc && make all-target-libgcc && make install-gcc && make install-target-libgcc
30
31
+cross: build-cross-binutils build-cross-gcc
32
+
33
build/boot.o: src/boot.asm
34
nasm -felf $< -o $@
35
@@ -52,4 +54,4 @@ bochs: dist/jdsos.iso
52
54
bochs -f .bochsrc
53
55
56
clean:
- rm -f build/* dist/* image/boot/*.bin
57
+ rm -rf $(BINUTILS_BUILD) $(GCC_BUILD) build/* dist/* image/boot/*.bin
0 commit comments