X-Git-Url: https://code.delx.au/refind/blobdiff_plain/c5d1646e66976fff2184375187bb96db366afcbc..7e22a0b1a85d3403ed76ece8339a07ef59174ed3:/mok/Makefile diff --git a/mok/Makefile b/mok/Makefile new file mode 100644 index 0000000..83851c1 --- /dev/null +++ b/mok/Makefile @@ -0,0 +1,19 @@ +# +# mok/Makefile +# Build control file for the libeg library +# + +SRCDIR = . + +VPATH = $(SRCDIR) + +LOCAL_CPPFLAGS = -I$(SRCDIR) -I$(SRCDIR)/../include + +OBJS = guid.o mok.o security_policy.o simple_file.o +TARGET = libmok.a + +all: $(TARGET) + +include $(SRCDIR)/../Make.common + +# EOF