Base makefile that just simplifies some common operations
authordjfiander <djfiander>
Wed, 5 Apr 2006 01:58:43 +0000 (01:58 +0000)
committerdjfiander <djfiander>
Wed, 5 Apr 2006 01:58:43 +0000 (01:58 +0000)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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