Rev 2726 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2726 | vana | 1 | include ../Make.defaults |
2 | |||
3 | CDIR=$(TOPDIR)/.. |
||
4 | |||
5 | all: |
||
6 | |||
7 | clean: |
||
8 | |||
9 | install: |
||
10 | mkdir -p $(INSTALLROOT)/include/efi |
||
11 | mkdir -p $(INSTALLROOT)/include/efi/protocol |
||
12 | mkdir -p $(INSTALLROOT)/include/efi/$(ARCH) |
||
13 | $(INSTALL) -m 644 *.h $(INSTALLROOT)/include/efi |
||
14 | $(INSTALL) -m 644 protocol/*.h $(INSTALLROOT)/include/efi/protocol |
||
15 | $(INSTALL) -m 644 $(ARCH)/*.h $(INSTALLROOT)/include/efi/$(ARCH) |
||
16 | ifeq ($(ARCH),ia64) |
||
17 | mkdir -p $(INSTALLROOT)/include/efi/protocol/ia64 |
||
18 | $(INSTALL) -m 644 protocol/ia64/*.h $(INSTALLROOT)/include/efi/protocol/ia64 |
||
19 | endif |
||
20 | |||
21 | include ../Make.rules |