vserver is no longer needed.
[mom.git] / Makefile
index 06048a0..9b75c7f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,23 +1,20 @@
-# @COPYRIGHT@
 #
-# $Id: Makefile,v 1.2 2004/11/17 20:24:11 acb Exp $
-
-BASE=pl_mom
-VERSION=0.3
-TARFILE=$(BASE)-$(VERSION).tgz
-
-all: pl_mom.pl pl_mom
+# pl_mom suite of node monitors
+#
+# Mark Huang <mlhuang@cs.princeton.edu>
+# Copyright (C) 2006 The Trustees of Princeton University
+#
+# $Id$
+#
 
-install:
-       install -D -m 755 pl_mom.pl     /usr/local/planetlab/bin/pl_mom.pl
-       install -D -m 755 pl_mom        /etc/init.d/pl_mom
+ALL := leak
 
-tarball:
-       rm -f $(TARFILE)
-       tar cvfz $(TARFILE) -C .. --exclude=CVS $(BASE)-$(VERSION)
+CC := gcc
+CFLAGS := -Wall -O2
 
-rpm::  tarball
-       sudo cp $(TARFILE) /usr/src/redhat/SOURCES
-       sudo rpmbuild -ba $(BASE).spec
+all: $(ALL)
 
+clean:
+       rm -f $(ALL)
 
+.PHONY: all clean