mirror of
https://github.com/acidanthera/audk.git
synced 2025-05-13 11:00:13 +02:00
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9623 6f19259b-4bc3-4df7-8a09-765794883524
14 lines
309 B
Makefile
14 lines
309 B
Makefile
MAKEROOT ?= ../..
|
|
|
|
include $(MAKEROOT)/Makefiles/header.makefile
|
|
|
|
APPLICATION = $(MAKEROOT)/bin/$(APPNAME)
|
|
|
|
.PHONY:all
|
|
all: $(MAKEROOT)/bin $(APPLICATION)
|
|
|
|
$(APPLICATION): $(OBJECTS)
|
|
$(LINKER) -o $(APPLICATION) $(LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
|
|
|
|
include $(MAKEROOT)/Makefiles/footer.makefile
|