[go: up one dir, main page]

Menu

[9e1265]: / mok / Makefile  Maximize  Restore  History

Download this file

28 lines (18 with data), 636 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# mok/Makefile
# Build control file for the libeg library
#
# 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 <http://www.gnu.org/licenses/>.
SRCDIR = .
VPATH = $(SRCDIR)
LOCAL_GNUEFI_CFLAGS = -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
clean:
rm -f $(TARGET) *~ *.so $(OBJS) *.efi *.obj refind_*.txt refind_*.dll *.lib
# EOF