aboutsummaryrefslogtreecommitdiffstats
path: root/tools/firmware/rombios/32bit/tcgbios/Makefile
blob: 8ce1d77e3520aebd460a154d66b94009164f907a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
XEN_ROOT = ../../../../..
include $(XEN_ROOT)/tools/firmware/Rules.mk

TARGET  = tcgbiosext.o

CFLAGS += $(CFLAGS_include) -I.. -I../..

.PHONY: all
all: $(TARGET)

.PHONY: clean
clean:
	rm -rf *.o $(TARGET) $(DEPS)

$(TARGET): tcgbios.o tpm_drivers.o
	$(LD) $(LDFLAGS_DIRECT) -r $^ -o $@

-include $(DEPS)