mirror of https://github.com/acidanthera/audk.git
14 lines
299 B
Plaintext
14 lines
299 B
Plaintext
|
MAKEROOT ?= ../..
|
||
|
|
||
|
include $(MAKEROOT)/Makefiles/header.makefile
|
||
|
|
||
|
APPLICATION = $(MAKEROOT)/bin/$(APPNAME)
|
||
|
|
||
|
.PHONY:all
|
||
|
all: $(MAKEROOT)/bin $(APPLICATION)
|
||
|
|
||
|
$(APPLICATION): $(OBJECTS)
|
||
|
$(LINKER) -o $(APPLICATION) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
|
||
|
|
||
|
include $(MAKEROOT)/Makefiles/footer.makefile
|