Update Makefile

This commit is contained in:
Loic Guegan 2021-04-06 08:26:01 +02:00
parent fcdc14f939
commit 3df156a9be

View file

@ -1,14 +1,15 @@
EXEC := bringelle EXEC := bringelle
CC := gcc -c -m32 -fno-pie -fno-builtin -fno-stack-protector CC := gcc -c -m32 -fno-pie -fno-builtin -fno-stack-protector
UTILS_OBJ := $(addsuffix .o,$(basename $(wildcard utils/*.c))) BOOT_OBJ := $(addsuffix .o,$(basename $(shell find ./boot -name "*.[c|S]")))
UTILS_OBJ := $(addsuffix .o,$(basename $(shell find ./utils -name "*.[c|S]")))
all: $(EXEC) all: $(EXEC)
$(EXEC): boot/boot.o $(UTILS_OBJ) bringelle.o $(EXEC): $(BOOT_OBJ) $(UTILS_OBJ) bringelle.o
ld -Ttext=0x00100000 -melf_i386 -nostdlib --oformat=binary -o bringelle $^ ld -Ttext=0x00100000 -melf_i386 -nostdlib --oformat=binary -o bringelle $^
boot/boot.o: ./boot/boot.S %.o: %.S
as --32 -o $@ $^ -mx86-used-note=no as --32 -o $@ $^ -mx86-used-note=no
%.o: %.c %.o: %.c
@ -16,8 +17,8 @@ boot/boot.o: ./boot/boot.S
objcopy --remove-section .note.gnu.property $@ objcopy --remove-section .note.gnu.property $@
clean: clean:
- rm $(EXEC) rm -f $(EXEC)
- find ./ -name "*.o" -delete find ./ -name "*.o" -delete
.PHONY: clean .PHONY: clean