CC = gcc
CFLAGS = -Wall -pedantic -O2
bmon: bmon.o
dbg:
gcc $(CFLAGS) -g bmon.c -o bmon-dbg
bmon.o: bmon.c
clean:
rm *.o bmon bmon-dbg 2> /dev/null