File: refit.mak

package info (click to toggle)
refit 0.7-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 580 kB
  • ctags: 688
  • sloc: ansic: 5,556; python: 167; sh: 107; makefile: 64
file content (34 lines) | stat: -rw-r--r-- 625 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# refit.mak
# Build control file for all rEFIt components
# 

SOURCE_DIR = $(SDK_INSTALL_DIR)\refit

!include $(SDK_INSTALL_DIR)\build\$(SDK_BUILD_ENV)\sdk.env

all :
	cd $(SOURCE_DIR)\libeg
	nmake -f libeg.mak all
	cd $(SOURCE_DIR)

	cd $(SOURCE_DIR)\refit
	nmake -f refit.mak all
	cd $(SOURCE_DIR)

	cd $(SOURCE_DIR)\gptsync
	nmake -f gptsync.mak all
	cd $(SOURCE_DIR)

	cd $(SOURCE_DIR)\ebounce
	nmake -f ebounce.mak all
	cd $(SOURCE_DIR)

	cd $(SOURCE_DIR)\TextMode
	nmake -f TextMode.mak all
	cd $(SOURCE_DIR)

	cd $(SOURCE_DIR)\dumpprot
	nmake -f dumpprot.mak all
	cd $(SOURCE_DIR)