ifstatd/Makefile

15 lines
271 B
Makefile
Raw Normal View History

2015-09-12 18:54:31 +04:30
PREFIX=/usr/local
INC=-I$(PREFIX)/include
LIB=-L$(PREFIX)/lib
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
$(CC) $(FLAGS) $(INC) $(LIB) ifstatd.c -o ifstatd_
2015-09-12 18:54:31 +04:30
clean:
rm -f ifstatd_
2015-09-12 18:54:31 +04:30