c-conc and p-val colour table output added
[physik/nlsop.git] / makefile
index 338db5d..9ecc4f4 100644 (file)
--- a/makefile
+++ b/makefile
@@ -3,14 +3,20 @@
 INCLUDEDIR = /usr/include
 
 CFLAGS = -O3 -Wall
-LIBS = -lncurses -lm
+LIBS = -lncurses -lm -lfftw3
 
 OBJS = network.o event.o input.o display.o audio.o fourier.o bmp.o
 
 dft: links $(OBJS)
        $(CC) $(CFLAGS) -o $@ $(OBJS) dft.c $(LIBS)
 
-all: links dft
+linescan: links $(OBJS)
+       $(CC) $(CFLAGS) -o $@ $(OBJS) linescan.c $(LIBS)
+
+3dplot: links $(OBJS)
+       $(CC) $(CFLAGS) -o $@ $(OBJS) 3dplot.c $(LIBS)
+
+all: links dft linescan 3dplot
 
 clean:
        rm -f $(OBJS) ivac