]> code.delx.au - refind/blobdiff - gptsync/Makefile
Added gptsync program files.
[refind] / gptsync / Makefile
diff --git a/gptsync/Makefile b/gptsync/Makefile
new file mode 100644 (file)
index 0000000..8987534
--- /dev/null
@@ -0,0 +1,29 @@
+# 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 gptsync.efi
+
+tiano:
+       +make -f Make.tiano
+
+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