2015-09-12 18:54:31 +04:30
|
|
|
PREFIX=/usr/local
|
|
|
|
INC=-I$(PREFIX)/include
|
2015-09-15 18:15:12 +04:30
|
|
|
LIB=-L$(PREFIX)/lib -lutil
|
2015-09-13 16:15:16 +04:30
|
|
|
FLAGS=-Wall -O2 -pipe -funroll-loops -ffast-math -fno-strict-aliasing -mssse3
|
2015-09-12 18:54:31 +04:30
|
|
|
CC?=cc
|
|
|
|
|
2015-09-13 15:01:24 +04:30
|
|
|
all: ifstatd_
|
2015-09-12 18:54:31 +04:30
|
|
|
|
2015-09-13 15:01:24 +04:30
|
|
|
ifstatd_: ifstatd.c Makefile
|
2015-09-13 14:21:39 +04:30
|
|
|
$(CC) $(FLAGS) $(INC) $(LIB) ifstatd.c -o ifstatd_
|
2015-09-12 18:54:31 +04:30
|
|
|
|
|
|
|
clean:
|
2015-09-13 14:21:39 +04:30
|
|
|
rm -f ifstatd_
|
2015-09-12 18:54:31 +04:30
|
|
|
|