summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-06-13 09:41:16 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-06-13 09:41:16 -0400
commite983d61545f58db81429d82a356dfadafd491dd0 (patch)
tree0b36c5cc5d2b1cce19a74613b0aa5dd97e33ceb6 /Makefile
parent8042f93c695f373542356739b0812e628f7b8b1d (diff)
added top-level Makefile for ease of building with debhelper.
stupid whitespace cleanup in openpgp2ssh.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b28e54e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+all: keytrans
+
+keytrans:
+ $(MAKE) -C src/keytrans
+
+clean:
+ $(MAKE) -C src/keytrans clean
+
+.PHONY: all clean