GNUmakefile 514 B

123456789101112131415161718192021222324
  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. APPNAME = DevicePath
  10. OBJECTS = DevicePath.o UefiDevicePathLib.o DevicePathFromText.o DevicePathUtilities.o
  11. include $(MAKEROOT)/Makefiles/app.makefile
  12. LIBS = -lCommon
  13. ifeq ($(CYGWIN), CYGWIN)
  14. LIBS += -L/lib/e2fsprogs -luuid
  15. endif
  16. ifeq ($(LINUX), Linux)
  17. LIBS += -luuid
  18. endif