mirror of https://github.com/acidanthera/audk.git
19 lines
257 B
Makefile
19 lines
257 B
Makefile
|
ARCH ?= IA32
|
||
|
MAKEROOT ?= ..
|
||
|
|
||
|
APPNAME = GenFv
|
||
|
|
||
|
OBJECTS = GenFv.o GenFvInternalLib.o
|
||
|
|
||
|
include $(MAKEROOT)/Makefiles/app.makefile
|
||
|
|
||
|
LIBS = -lCommon
|
||
|
ifeq ($(CYGWIN), CYGWIN)
|
||
|
LIBS += -L/lib/e2fsprogs -luuid
|
||
|
endif
|
||
|
|
||
|
ifeq ($(LINUX), Linux)
|
||
|
LIBS += -luuid
|
||
|
endif
|
||
|
|