Mercurial > hg > Members > taiki > EFIKernel
comparison boot/Makefile @ 19:2fbe46f63d4c
separate source file.
author | taiki |
---|---|
date | Fri, 08 Feb 2013 19:12:05 +0900 |
parents | ac5d699b9787 |
children |
comparison
equal
deleted
inserted
replaced
18:bd4c99e700e8 | 19:2fbe46f63d4c |
---|---|
13 CFLAGS += -DEFI_FUNCTION_WRAPPER | 13 CFLAGS += -DEFI_FUNCTION_WRAPPER |
14 endif | 14 endif |
15 | 15 |
16 LDFLAGS = -nostdlib -znocombreloc -T $(EFI_LDS) -shared -Bsymbolic -L$(EFI_LIB_PATH) $(EFI_CRT_OBJS) | 16 LDFLAGS = -nostdlib -znocombreloc -T $(EFI_LDS) -shared -Bsymbolic -L$(EFI_LIB_PATH) $(EFI_CRT_OBJS) |
17 TARGET = bootx64.efi | 17 TARGET = bootx64.efi |
18 OBJS = bootx64.o | 18 OBJS = bootx64.o config.o |
19 | |
20 | 19 |
21 all: $(TARGET) | 20 all: $(TARGET) |
22 | 21 |
23 bootx64.efi: $(OBJS) | 22 bootx64.efi: $(OBJS) |
24 | 23 |