fiss

Friedel's Initialization and Service Supervision
Log | Files | Refs | LICENSE

commit 047a81cb0a227aa92370fdeaeefc074ac58f14e5
parent 808e340aba5ce5c89f8272d451668dab8f24f409
Author: Friedel Schon <[email protected]>
Date:   Tue, 25 Apr 2023 13:18:02 +0200

update Makefile

Diffstat:
MMakefile | 20++++++--------------
1 file changed, 6 insertions(+), 14 deletions(-)

diff --git a/Makefile b/Makefile @@ -10,7 +10,7 @@ ROFF_DIR := usr/share/man # Compiler Options CC := gcc -CCFLAGS := -I$(INCLUDE_DIR) -Wall -Wextra -g +CCFLAGS := -I$(INCLUDE_DIR) -Wall -Wextra LFLAGS := # Executable-specific flags @@ -30,6 +30,7 @@ MAN_FILES := $(wildcard $(MAN_DIR)/*) ROFF_FILES := $(patsubst $(MAN_DIR)/%.md,$(ROFF_DIR)/%,$(MAN_FILES)) \ $(patsubst $(MAN_DIR)/%.roff,$(ROFF_DIR)/%,$(MAN_FILES)) +# Intermediate directories INTERMED_DIRS := $(BIN_DIR) $(BUILD_DIR) $(ROFF_DIR) # Magic targets @@ -66,6 +67,8 @@ $(BIN_DIR)/%: $(SCRIPT_DIR)/%.sh | $(BIN_DIR) cp $< $@ chmod +x $@ +# Manual targets + $(ROFF_DIR)/%: $(MAN_DIR)/%.md | $(ROFF_DIR) md2man-roff $< > $@ @@ -74,15 +77,4 @@ $(ROFF_DIR)/%: $(MAN_DIR)/%.roff | $(ROFF_DIR) # Debug compile_flags.txt: - echo $(CCFLAGS) | tr " " "\n" > compile_flags.txt - -# debug - -.PHONY: emulator - -emulator: $(BIN_FILES) - cp -v bin/* rootfs/sbin/ - cd rootfs && find | cpio -oH newc -R root:root | zstd > ../build/rootfs.cpio - - qemu-system-x86_64 -accel kvm -kernel ~/linux-void/vmlinuz-6.1.21_1 -initrd build/rootfs.cpio -m 4096 -append 'console=ttyS0 edd=off quiet' -serial stdio -# qemu-system-x86_64 -accel kvm -kernel /boot/vmlinuz-6.1.21_1 -initrd build/rootfs.cpio -m 4096 -append 'console=ttyS0 edd=off quiet' -serial stdio -\ No newline at end of file + echo $(CCFLAGS) | tr " " "\n" > compile_flags.txt +\ No newline at end of file