File: Makefile

package info (click to toggle)
refind 0.14.2-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,432 kB
  • sloc: ansic: 52,757; sh: 2,086; python: 592; makefile: 351; perl: 5
file content (30 lines) | stat: -rw-r--r-- 593 bytes parent folder | download | duplicates (5)
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
# meta-Makefile for gptsync program; controls use of EFI build using
# GNU-EFI vs. TianoCore EDK2 or build for Unix/Linux.
#
# Most of the functionality is in Make.tiano, Make.gnuefi, and
# Make.unix; this Makefile just dispatches based on options
# passed to it....

TEXTFILES = gptsync.txt

TARGET = tiano

all:	$(TARGET)

gnuefi:
	+make -f Make.gnuefi

tiano:
	+make -f Make.tiano

# TODO: Fix Make.unix; currently broken....
unix:
	+make -f Make.unix

# utility rules

clean:
	rm -f *~ *.bak *.o *.obj *.so *.efi *.dll err.txt gptsync_*.txt gptsync showpart $(TEXTFILES)


# DO NOT DELETE