Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: Makefile

Issue 660204: Upgrade to tpm-emulator version 0.7. (Closed)
Patch Set: Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ChangeLog ('k') | README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 419cee2f5b170c879fff274f024b83edc615fc06..0000000000000000000000000000000000000000
--- a/Makefile
+++ /dev/null
@@ -1,57 +0,0 @@
-# Software-Based Trusted Platform Module (TPM) Emulator for Linux
-# Copyright (C) 2006 Mario Strasser <mast@gmx.net>
-#
-# $Id$
-
-# tpm settings
-PACKAGE_NAME := tpm_emulator
-VERSION_MAJOR := 0
-VERSION_MINOR := 7
-VERSION_SUFFIX :=
-
-SUBDIRS := tpmd tpmd_dev tddl
-
-all: all-recursive
-
-clean: clean-recursive
- rm -f tpm/tpm_version.h
-
-install: install-recursive
-
-all-recursive clean-recursive install-recursive:
- @target=`echo $@ | sed s/-recursive//`; \
- for subdir in $(SUBDIRS); do \
- echo "Making $$target in $$subdir"; \
- $(MAKE) -C $$subdir $$target || exit -1; \
- done
-
-user: version
- @$(MAKE) -C tpmd all || exit -1
- @$(MAKE) -C tddl all || exit -1
-
-modules: version
- @$(MAKE) -C tpmd_dev all || exit -1
-
-user_install: user
- @$(MAKE) -C tpmd install || exit -1
- @$(MAKE) -C tddl install || exit -1
-
-modules_install: modules
- @$(MAKE) -C tpmd_dev install || exit -1
-
-DIRS := . tpm crypto tpmd tpmd_dev tddl tpmd_dev_openbsd
-DISTSRC := $(foreach dir, $(DIRS), $(wildcard $(dir)/*.c))
-DISTSRC += $(foreach dir, $(DIRS), $(wildcard $(dir)/*.h))
-DIRS := . tpmd tpmd_dev tddl tpmd_dev_openbsd
-DISTSRC += $(foreach dir, $(DIRS), $(dir)/Makefile)
-DISTSRC += ./README ./AUTHORS ./ChangeLog tpmd_dev/tpmd_dev.rules.in
-DISTDIR := tpm_emulator-$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_SUFFIX)
-
-dist: $(DISTSRC)
- @rm -rf $(DISTDIR); mkdir $(DISTDIR)
- @cp --parents $(DISTSRC) $(DISTDIR)/
- tar -chzf $(DISTDIR).tar.gz $(DISTDIR)
- @rm -rf $(DISTDIR)
-
-.PHONY: all version clean install dist
-
« no previous file with comments | « ChangeLog ('k') | README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698