aboutsummaryrefslogtreecommitdiffstats
path: root/tools/vtpm_manager/tcs/Makefile
blob: 9d25817e63452235c5cea6b9822b773a20b565d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
XEN_ROOT = ../../..
include $(XEN_ROOT)/tools/vtpm_manager/Rules.mk

BIN		= libTCS.a

.PHONY: all
all: build

.PHONY: build
build: $(BIN)

.PHONY: install
install: build

.PHONY: clean
clean:
	rm -f *.a *.so *.o *.rpm $(DEP_FILES)

.PHONY: mrproper
mrproper: clean
	rm -f *~

$(BIN): $(OBJS)
	$(AR) rcs $(BIN) $(OBJS)