diff options
author | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-05-25 14:51:32 -0400 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-05-25 14:51:32 -0400 |
commit | ad6dc98e4a8b38ed1ae3972f948723a205306a7d (patch) | |
tree | 47417a57e749518798532f11e5b487e3de489bec /Makefile | |
parent | 03f7058885d83592f3fe4faefc2d3fb148615ec4 (diff) |
move gpg2ssh stuff into it's own subdirectory to reduce some cluter
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 |