summaryrefslogtreecommitdiff
path: root/BaseTools/Source/C/Makefiles/app.makefile
blob: 7555556baae82a36788c20c4f1fb8914f028abc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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