#
#	This makefile was created specifically for compiling the
#	tst_pmNonLinear.c test program.  Usage
#		make -f Makefile_NonLinear

CFLAGS = -g -O2 -g2 -Wall -std=c99 -D_GNU_SOURCE
INCLUDE = -I/home/gusciora/dragon/PAN/CVS/psLib/include -I/home/gusciora/dragon/PAN/CVS/psLib/test -I/usr/local/include -I../src
LIBDIR = -L/home/gusciora/dragon/PAN/CVS/psLib/lib -L/usr/local/lib -L/usr/local/lib -L../src
LIBS = -lgsl -lgslcblas -lpsmodule -lpslib -lpstest -lfftw3f -lcfitsio -lsla -lm

tst_pmNonLinear:	tst_pmNonLinear.c
	gcc $(CFLAGS) $(INCLUDE) $(LIBDIR) $(LIBS) tst_pmNonLinear.c -o tst_pmNonLinear

distclean:
	rm tst_pmNonLinear
