This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <math.h> | |
#include "fft.h" | |
#ifndef M_PI | |
# define M_PI 3.14159265358979323846264338327950288 | |
#endif | |
void fft(complex *v, int n, enum fft_direction sgn, complex *tmp) | |
{ | |
int k; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CURL=curl -L | |
TAR=tar | |
MAKEOPTS=-j2 | |
prefix=$(shell pwd)/gtk-root | |
export PKG_CONFIG_PATH=$(prefix)/lib/pkgconfig | |
# some stupid configure scripts requires shared library | |
# available even if it is installed to a non-standard |
NewerOlder