]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/C/Makefiles/app.makefile
Check In tool source code based on Build tool project revision r1655.
[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) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
12
13 include $(MAKEROOT)/Makefiles/footer.makefile