remove old svn-keywords & stuff
[mom.git] / Makefile
1 #
2 # pl_mom suite of node monitors
3 #
4 # Mark Huang <mlhuang@cs.princeton.edu>
5 # Copyright (C) 2006 The Trustees of Princeton University
6 #
7
8 ALL := leak
9
10 CC := gcc
11 CFLAGS := -Wall -O2
12
13 all: $(ALL)
14
15 clean:
16         rm -f $(ALL)
17
18 .PHONY: all clean