]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/C/Makefiles/app.makefile
Sync tool code to BuildTools project r1783.
[mirror_edk2.git] / BaseTools / Source / C / Makefiles / app.makefile
1 MAKEROOT ?= ../..
2
3 include $(MAKEROOT)/Makefiles/header.makefile
4
5 APPLICATION = $(MAKEROOT)/bin/$(APPNAME)
6
7 .PHONY:all
8 all: $(MAKEROOT)/bin $(APPLICATION)
9
10 $(APPLICATION): $(OBJECTS)
11 $(LINKER) -o $(APPLICATION) $(LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
12
13 include $(MAKEROOT)/Makefiles/footer.makefile