From 32222bb0aa112b826bbf896052a6809408494db2 Mon Sep 17 00:00:00 2001 From: djfiander Date: Wed, 5 Apr 2006 01:58:43 +0000 Subject: [PATCH] Base makefile that just simplifies some common operations --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e9a6bcf --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +# +# There's not a lot to "make", but this simplifies the usual +# sorts of tasks +# + +all: + @echo Nothing to make. The command '"make run"' will run the server. + +# just run the server from the command line +run: + perl SIPServer.pm SIPconfig.xml + +etags: + find . -name '*.pm' -print | etags - \ No newline at end of file -- 2.11.0