diff options
| author | kitty <nepeta@canaglie.net> | 2026-01-19 23:46:04 +1100 |
|---|---|---|
| committer | kitty <nepeta@canaglie.net> | 2026-01-19 23:46:04 +1100 |
| commit | 25a539fec12ffb53d31259cee2a649cd457111a0 (patch) | |
| tree | 614a6ec30d1c0c78c053323d30cf14c9bad4c7b7 /Makefile | |
| parent | b4e0e8e76d07c3ae5a58d89d78f3ce023670fb26 (diff) | |
build test, x86 → x86_64 (changed my mind)
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,10 +2,10 @@ TARGET := jefs SRCS = $(TARGET).s $(TARGET): $(TARGET).o - ld -static -m elf_i386 -o $@ $< + ld -static -o $@ $< -$(TARGET): $(SRCS) - nasm -g -F dwarf -O0 -f elf32 -o $@ $< +$(TARGET).o: $(SRCS) + nasm -g -F dwarf -O0 -f elf64 -o $@ $< .PHONY: clean clean: |
