From 58c9d40544119cc2f5861b9c68b4744d08735012 Mon Sep 17 00:00:00 2001 From: Florian Zeitz Date: Sat, 9 Jul 2011 03:49:23 +0200 Subject: [PATCH] Add Makefile --- Makefile | 10 ++++++++++ PEPThread.h => src/PEPThread.h | 0 PEPThread.m => src/PEPThread.m | 0 mpdbot.m => src/mpdbot.m | 0 4 files changed, 10 insertions(+) create mode 100644 Makefile rename PEPThread.h => src/PEPThread.h (100%) rename PEPThread.m => src/PEPThread.m (100%) rename mpdbot.m => src/mpdbot.m (100%) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..27613d6 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CPPFLAGS += -Wall -g +LIBS += -lobjxmpp + +.SILENT: + +all: + objfw-compile $(CPPFLAGS) $(LIBS) -o mpdbot src/*.m + +clean: + rm src/*.o diff --git a/PEPThread.h b/src/PEPThread.h similarity index 100% rename from PEPThread.h rename to src/PEPThread.h diff --git a/PEPThread.m b/src/PEPThread.m similarity index 100% rename from PEPThread.m rename to src/PEPThread.m diff --git a/mpdbot.m b/src/mpdbot.m similarity index 100% rename from mpdbot.m rename to src/mpdbot.m -- 2.39.2