Subversion Repositories HelenOS

Rev

Rev 2726 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2726 Rev 3478
1
include ../Make.defaults
1
include ../Make.defaults
2
 
2
 
3
CDIR=$(TOPDIR)/..
3
CDIR=$(TOPDIR)/..
4
 
4
 
5
all:
5
all:
6
 
6
 
7
clean:
7
clean:
8
 
8
 
9
install:
9
install:
10
	mkdir -p $(INSTALLROOT)/include/efi
10
	mkdir -p $(INSTALLROOT)/include/efi
11
	mkdir -p $(INSTALLROOT)/include/efi/protocol
11
	mkdir -p $(INSTALLROOT)/include/efi/protocol
12
	mkdir -p $(INSTALLROOT)/include/efi/$(ARCH)
12
	mkdir -p $(INSTALLROOT)/include/efi/$(ARCH)
13
	$(INSTALL) -m 644 *.h $(INSTALLROOT)/include/efi
13
	$(INSTALL) -m 644 *.h $(INSTALLROOT)/include/efi
14
	$(INSTALL) -m 644 protocol/*.h $(INSTALLROOT)/include/efi/protocol
14
	$(INSTALL) -m 644 protocol/*.h $(INSTALLROOT)/include/efi/protocol
15
	$(INSTALL) -m 644 $(ARCH)/*.h $(INSTALLROOT)/include/efi/$(ARCH)
15
	$(INSTALL) -m 644 $(ARCH)/*.h $(INSTALLROOT)/include/efi/$(ARCH)
16
ifeq ($(ARCH),ia64)
16
ifeq ($(ARCH),ia64)
17
	mkdir -p $(INSTALLROOT)/include/efi/protocol/ia64
17
	mkdir -p $(INSTALLROOT)/include/efi/protocol/ia64
18
	$(INSTALL) -m 644 protocol/ia64/*.h $(INSTALLROOT)/include/efi/protocol/ia64
18
	$(INSTALL) -m 644 protocol/ia64/*.h $(INSTALLROOT)/include/efi/protocol/ia64
19
endif
19
endif
20
 
20
 
21
include ../Make.rules
21
include ../Make.rules
22
 
22