]> code.delx.au - refind/blob - gptsync/Makefile
8987534b8513697aeb8c7a0e98bdd80a6e94a0ce
[refind] / gptsync / Makefile
1 # meta-Makefile for gptsync program; controls use of EFI build using
2 # GNU-EFI vs. TianoCore EDK2 or build for Unix/Linux.
3 #
4 # Most of the functionality is in Make.tiano, Make.gnuefi, and
5 # Make.unix; this Makefile just dispatches based on options
6 # passed to it....
7
8 TEXTFILES = gptsync.txt
9
10 TARGET = tiano
11
12 all: $(TARGET)
13
14 gnuefi:
15 +make -f Make.gnuefi gptsync.efi
16
17 tiano:
18 +make -f Make.tiano
19
20 unix:
21 +make -f Make.unix
22
23 # utility rules
24
25 clean:
26 rm -f *~ *.bak *.o *.obj *.so *.efi *.dll err.txt gptsync_*.txt gptsync showpart $(TEXTFILES)
27
28
29 # DO NOT DELETE