ifstatd/Makefile

15 lines
290 B
Makefile
Raw Normal View History

PREFIX?=/usr/local
2015-09-12 18:54:31 +04:30
INC=-I$(PREFIX)/include
LIB=-L$(PREFIX)/lib -lpidutil
FLAGS=-Wall -Wextra -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