X-Git-Url: https://code.delx.au/refind/blobdiff_plain/da80923f62aa284dde891d0bff8c42cf791bd95c..1f5b3c00f34cd3bfa077b2110d383632295efbd0:/EfiLib/Makefile diff --git a/EfiLib/Makefile b/EfiLib/Makefile index 8487805..39d6be6 100644 --- a/EfiLib/Makefile +++ b/EfiLib/Makefile @@ -2,5 +2,23 @@ # EfiLib/Makefile # +# This program is licensed under the terms of the GNU GPL, version 3, +# or (at your option) any later version. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +SRCDIR = . + +VPATH = $(SRCDIR) + +LOCAL_GNUEFI_CFLAGS = -I$(SRCDIR) -I$(SRCDIR)/../include + +OBJS = gnuefi-helper.o legacy.o BdsHelper.o BdsTianoCore.o +TARGET = libEfiLib.a + +all: $(TARGET) + +include $(SRCDIR)/../Make.common + clean: - rm -f *.o *.obj *~ *.lib + rm -f *.o *.obj *~ *.lib *.a