You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
136 B
12 lines
136 B
5 years ago
|
CC = gcc
|
||
5 years ago
|
CFLAGS = -Wall -pedantic --std=c99 -O2
|
||
1 month ago
|
PREFIX = /usr/local
|
||
5 years ago
|
|
||
4 years ago
|
bmon: bmon.c
|
||
5 years ago
|
|
||
1 month ago
|
install:
|
||
|
cp bmon ${PREFIX}/bin/
|
||
5 years ago
|
|
||
|
clean:
|
||
1 month ago
|
rm -f bmon
|