fsipd/Makefile

17 lines
319 B
Makefile
Raw Normal View History

2015-10-12 19:37:46 +03:30
PREFIX?=/usr/local
2015-09-16 11:29:27 +04:30
INC=-I$(PREFIX)/include
2015-10-12 19:37:46 +03:30
LIB=-L$(PREFIX)/lib -lutil
CFLAGS=-g -Wall -Wextra -O2 -pipe -funroll-loops -ffast-math -fno-strict-aliasing
2015-09-16 11:29:27 +04:30
CC?=cc
2015-10-12 19:37:46 +03:30
SOURCES=$(wildcard src/**/*.c src/*.c)
2015-09-16 11:29:27 +04:30
all: fsipd
2015-10-12 19:37:46 +03:30
fsipd: $(SOURCES) Makefile
$(CC) $(CFLAGS) $(INC) $(LIB) src/fsipd.c -o bin/fsipd
2015-09-16 11:29:27 +04:30
clean:
2015-10-12 19:37:46 +03:30
rm -f bin/*
2015-09-16 11:29:27 +04:30