File: Makefile

package info (click to toggle)
gnu-efi 3.0a-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 772 kB
  • ctags: 4,116
  • sloc: ansic: 10,304; asm: 312; makefile: 120
file content (21 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include ../Make.defaults

CDIR=$(TOPDIR)/..

all:

clean:

install:
	mkdir -p $(INSTALLROOT)/include/efi
	mkdir -p $(INSTALLROOT)/include/efi/protocol
	mkdir -p $(INSTALLROOT)/include/efi/$(ARCH)
	$(INSTALL) -m 644 *.h $(INSTALLROOT)/include/efi
	$(INSTALL) -m 644 protocol/*.h $(INSTALLROOT)/include/efi/protocol
	$(INSTALL) -m 644 $(ARCH)/*.h $(INSTALLROOT)/include/efi/$(ARCH)
ifeq ($(ARCH),ia64)
	mkdir -p $(INSTALLROOT)/include/efi/protocol/ia64
	$(INSTALL) -m 644 protocol/ia64/*.h $(INSTALLROOT)/include/efi/protocol/ia64
endif

include ../Make.rules