X-Git-Url: http://git.onelab.eu/?p=mom.git;a=blobdiff_plain;f=Makefile;h=9b75c7f7cef2585d32df7e08eab7bb2c578e921a;hp=dfe3e778fad69ef67de45049cc059ceee8d536df;hb=84d010124e01c6d71f2778daabb3e5adf66437c9;hpb=e35960f004a9666f7f36582ef70307ceeb880d7a diff --git a/Makefile b/Makefile index dfe3e77..9b75c7f 100644 --- a/Makefile +++ b/Makefile @@ -1,23 +1,20 @@ -# @COPYRIGHT@ # -# $Id: Makefile,v 1.1.1.1 2004/10/29 18:03:29 acb Exp $ - -BASE=pl_mom -VERSION=0.2 -TARFILE=$(BASE)-$(VERSION).tgz - -all: pl_mom.pl pl_mom +# pl_mom suite of node monitors +# +# Mark Huang +# 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