diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-05-26 21:46:33 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-05-26 21:46:33 -0400 |
commit | 4f321fb2967f009b8b3330c62bfec2fcc5475418 (patch) | |
tree | 3634d4d5b8e4adb29faa8f9bb3593d0fe20b1a5a /Makefile | |
parent | 19b2668dfef84687e052c42638ad7e696d5fa6a6 (diff) | |
parent | 4eba4e7e66fc7febb1e7255a649f6b6ad240d653 (diff) |
merging some changes from jrollins.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index aa18aaa..0000000 --- a/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -monkeysphere: main.c gnutls-helpers.o - gcc -g -Wall --pedantic -o monkeysphere main.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o - -gpg2ssh: gpg2ssh.c gnutls-helpers.o - gcc -g -Wall --pedantic -o gpg2ssh gpg2ssh.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o - -ssh2gpg: ssh2gpg.c gnutls-helpers.o - gcc -g -Wall --pedantic -o ssh2gpg ssh2gpg.c `libgnutls-config --libs --cflags` -lgnutls-extra gnutls-helpers.o - -%.o: %.c - gcc -g -Wall --pedantic -o $@ -c $< - -clean: - rm -f monkeysphere *.o - -.PHONY: clean |