diff options
author | dzwdz | 2022-03-26 21:06:07 +0100 |
---|---|---|
committer | dzwdz | 2022-03-26 21:06:07 +0100 |
commit | 38d1712e31e60de9f2afe85873b2174e002e3e99 (patch) | |
tree | 19c402747631d6df2dbd7c9222d7871b941e94ee /Makefile | |
parent | 96f021e783f1e99a1ce7d34c0dfeaef524abc2d1 (diff) |
kernel: IRQs; PS/2 keyboard support
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -7,7 +7,10 @@ CFLAGS = -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wold-style-definition -We CFLAGS += -mgeneral-regs-only CFLAGS += -Isrc/ LFLAGS = -ffreestanding -O2 -nostdlib -lgcc -QFLAGS = -no-reboot -display none +QFLAGS = -no-reboot +ifndef QEMU_DISPLAY +QFLAGS += -display none +endif define from_sources $(patsubst src/%.s,out/obj/%.s.o,$(shell find $(1) -type f -name '*.s')) \ |