From: djfiander Date: Wed, 5 Apr 2006 01:58:43 +0000 (+0000) Subject: Base makefile that just simplifies some common operations X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=32222bb0aa112b826bbf896052a6809408494db2;p=working%2FSIPServer.git Base makefile that just simplifies some common operations --- 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