]> code.delx.au - refind/blob - gptsync/Makefile
Significant reworking of Makefile structure. Added Apple Core Storage
[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
16
17 tiano:
18 +make -f Make.tiano
19
20 # TODO: Fix Make.unix; currently broken....
21 unix:
22 +make -f Make.unix
23
24 # utility rules
25
26 clean:
27 rm -f *~ *.bak *.o *.obj *.so *.efi *.dll err.txt gptsync_*.txt gptsync showpart $(TEXTFILES)
28
29
30 # DO NOT DELETE