You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
318 B

.POSIX:
.PHONY: install clean
PREFIX=/usr/local
CC=cc
CFLAGS=-Wall -Wextra -Wshadow -Wpedantic -std=c99 -O2 -D_XOPEN_SOURCE
LDFLAGS=$(shell pkg-config --libs --cflags --static fftw3 fftw3f) -static
fftpipe: fftpipe.c
$(CC) $? $(LDFLAGS) $(CFLAGS) -o $@
clean:
rm fftpipe
install: fftpipe
cp $? $(PREFIX)/bin/