about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-03 01:35:20 +0000
committerJames Booth <boothj5@gmail.com>2012-02-03 01:35:20 +0000
commitebdfd00296668f34dc0a445fcbed699b28588dc3 (patch)
tree08b73ed72a9d9eb26573b58230f1761eb9d720ff /Makefile
parent3dd4817906336911ba7b18ef5ab0c8abd7d6dd2f (diff)
downloadprofani-tty-ebdfd00296668f34dc0a445fcbed699b28588dc3.tar.gz
Removed libstrophe examples
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 0 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 0cf74279..4ffd8c11 100644
--- a/Makefile
+++ b/Makefile
@@ -4,17 +4,9 @@ LIBS = -lxml2 -lssl -lresolv -lncurses -lstrophe
 
 profanity: clean
 	$(CC) profanity.c $(LIBS) -o profanity 
-	$(CC) roster.c $(LIBS) -o roster
-	$(CC) active.c $(LIBS) -o active
-	$(CC) basic.c $(LIBS) -o basic
-	$(CC) bot.c $(LIBS) -o bot
 	$(CC) curses_example.c -lncurses -o curses_example
 
 .PHONY: clean
 clean:
 	rm -f profanity
-	rm -f roster
-	rm -f active
-	rm -f basic
-	rm -f bot
 	rm -f curses_example