1## @file
2# GNU/Linux makefile for 'GenFv' module build.
3#
4# Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
5# SPDX-License-Identifier: BSD-2-Clause-Patent
6#
7MAKEROOT ?= ..
8
9APPNAME = GenFv
10
11OBJECTS = GenFv.o GenFvInternalLib.o
12
13include $(MAKEROOT)/Makefiles/app.makefile
14
15LIBS = -lCommon
16ifeq ($(CYGWIN), CYGWIN)
17  LIBS += -L/lib/e2fsprogs -luuid
18endif
19
20ifeq ($(LINUX), Linux)
21  LIBS += -luuid
22endif
23
24