source: trunk/packages/xen-common/xen-common/tools/vtpm_manager/util/Makefile @ 34

Last change on this file since 34 was 34, checked in by hartmans, 17 years ago

Add xen and xen-common

File size: 323 bytes
Line 
1XEN_ROOT = ../../..
2include $(XEN_ROOT)/tools/vtpm_manager/Rules.mk
3
4BIN             = libTCGUtils.a
5
6.PHONY: all
7all: build
8
9.PHONY: build
10build: $(BIN)
11
12.PHONY: install
13install: build
14
15.PHONY: clean
16clean:
17        rm -f *.a *.so *.o *.rpm $(DEP_FILES)
18
19.PHONY: mrproper
20mrproper: clean
21        rm -f *~
22
23$(BIN): $(OBJS)
24        $(AR) rcs $(BIN) $(OBJS)
Note: See TracBrowser for help on using the repository browser.