diff options
| author | Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> | 2024-04-04 16:56:17 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> | 2024-04-04 16:56:17 +0200 |
| commit | 0f9388e1c596c13ae3c317d81e7bcfe23626acc2 (patch) | |
| tree | e9c6ab7d4d0242e44db81fb1f54b6915797bc83e /makefile | |
| parent | 9dd72018c4d6a1b3bfeb29e89519bf8a494c7063 (diff) | |
Meta: Add rsrc files, moved Elf.h to StdKit.
Signed-off-by: Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com>
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -48,13 +48,16 @@ pre-processor: .PHONY: compiler compiler: + windres i64asm.rsrc -O coff -o i64asm.obj + windres 64asm.rsrc -O coff -o 64asm.obj $(LINK_CC) $(COMMON_INC) $(CC_SRC) -o $(CC_OUTPUT) - $(LINK_CC) $(COMMON_INC) $(IASM_SRC) -o $(IASM_OUTPUT) - $(LINK_CC) $(COMMON_INC) $(ASM_SRC) -o $(ASM_OUTPUT) + $(LINK_CC) $(COMMON_INC) i64asm.obj $(IASM_SRC) -o $(IASM_OUTPUT) + $(LINK_CC) $(COMMON_INC) 64asm.obj $(ASM_SRC) -o $(ASM_OUTPUT) .PHONY: linker linker: - $(LINK_CC) $(COMMON_INC) $(LINK_SRC) -o $(LINK_OUTPUT) + windres link.rsrc -O coff -o link.obj + $(LINK_CC) $(COMMON_INC) link.obj $(LINK_SRC) -o $(LINK_OUTPUT) cp $(LINK_OUTPUT) $(LINK_ALT_OUTPUT) cp $(LINK_OUTPUT) $(LINK_ALT_2_OUTPUT) cp $(LINK_OUTPUT) $(LINK_ALT_3_OUTPUT) |
