]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/C/DevicePath/GNUmakefile
7ca08af9662d50a43745547329bb7dc5613d4356
[mirror_edk2.git] / BaseTools / Source / C / DevicePath / GNUmakefile
1 ## @file
2 # GNU/Linux makefile for 'DevicePath' module build.
3 #
4 # Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
5 # SPDX-License-Identifier: BSD-2-Clause-Patent
6 #
7 ARCH ?= IA32
8 MAKEROOT ?= ..
9
10 APPNAME = DevicePath
11
12 OBJECTS = DevicePath.o UefiDevicePathLib.o DevicePathFromText.o DevicePathUtilities.o
13
14 include $(MAKEROOT)/Makefiles/app.makefile
15
16 LIBS = -lCommon
17 ifeq ($(CYGWIN), CYGWIN)
18 LIBS += -L/lib/e2fsprogs -luuid
19 endif
20
21 ifeq ($(LINUX), Linux)
22 LIBS += -luuid
23 endif
24