Fix parallel build after d3d52b: boot/setup.S now contains #include "build_version.h", so that file needs to be generated beforehand. (#235)

This commit is contained in:
Lionel Debroux 2023-01-23 15:17:47 +01:00 committed by GitHub
parent 10e8435604
commit b6992b9ec0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ boot/startup.o: ../boot/startup32.S ../boot/boot.h
@mkdir -p boot
$(CC) -m32 -x assembler-with-cpp -c -I../boot -o $@ $<
boot/%.o: ../boot/%.S ../boot/boot.h
boot/%.o: ../boot/%.S ../boot/boot.h app/build_version.h
@mkdir -p boot
$(CC) -m32 -x assembler-with-cpp -c -I../boot -Iapp -o $@ $<

View File

@ -80,7 +80,7 @@ boot/startup.o: ../boot/startup64.S ../boot/boot.h
@mkdir -p boot
$(CC) -x assembler-with-cpp -c -I../boot -o $@ $<
boot/%.o: ../boot/%.S ../boot/boot.h
boot/%.o: ../boot/%.S ../boot/boot.h app/build_version.h
@mkdir -p boot
$(CC) -x assembler-with-cpp -c -I../boot -Iapp -o $@ $<