ifstatd/Makefile

23 lines
427 B
Makefile
Raw Normal View History

CC?=cc
PREFIX?=/usr/local
CPPFLAGS=-I$(PREFIX)/include
LDFLAGS=-L$(PREFIX)/lib
LDLIBS=-lpidutil
FLAGS=-Wall -Wextra -O2 -pipe -funroll-loops -ffast-math -fno-strict-aliasing -mssse3
2015-09-12 18:54:31 +04:30
.PHONY: libpidutil get-deps
2015-09-12 18:54:31 +04:30
all: get-deps libpidutil ifstatd_
2015-09-12 18:54:31 +04:30
ifstatd_: ifstatd.o
2015-09-12 18:54:31 +04:30
get-deps:
git submodule update --init
libpidutil:
$(MAKE) -C libpidutil all
clean:
rm -f *.BAK *.log *.o *.a core ifstatd_
$(MAKE) -C libpidutil clean