]> code.delx.au - refind/blob - refind/Makefile
rEFInd can now load EFI drivers!
[refind] / refind / Makefile
1 #
2 # refind/Makefile
3 # Build control file for the rEFInd boot menu
4 #
5
6 SRCDIR = .
7
8 VPATH = $(SRCDIR)
9
10 ifeq ($(ARCH),ia32)
11 LIBEG = build32
12 endif
13
14 ifeq ($(ARCH),x86_64)
15 LIBEG = build64
16 endif
17
18 LOCAL_CPPFLAGS = -I$(SRCDIR) -I$(SRCDIR)/../include -I$(SRCDIR)/../libeg -DDEBIAN_VERSION="L\"$(DEBVER)\""
19 LOCAL_LDFLAGS = -L$(SRCDIR)/../libeg/$(LIBEG)
20 LOCAL_LIBS = -leg
21
22 OBJS = main.o config.o menu.o screen.o icns.o lib.o bootsvcs.o
23 TARGET = refind.efi
24
25 all: $(TARGET)
26
27 include $(SRCDIR)/../Make.common
28
29 # EOF
30 # DO NOT DELETE