there is a new event api ...
[sound-tools/hdrec.git] / Makefile
index a27d210..353989a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,14 +3,21 @@
 CFLAGS = -O3 -Wall -I/usr/include/directfb
 CC = gcc
 
-TARGETS = hdrec
+TARGETS = hdrec make_raw
 
 all: $(TARGETS)
 
-hdrec:
+hdrec: links
        $(CC) $(CFLAGS) -Wall fourier.c oss_api.c hdrec.c -o hdrec -lm -ldirectfb
 
+make_raw:
+       $(CC) -O3 -Wall make_raw.c -o make_raw -lm
+
+links:
+       ln -sf ../../api/fourier/fourier.c .
+       ln -sf ../../api/fourier/fourier.h .
+
 clean:
-       rm $(OBJS) hdrec
+       rm -f $(TARGETS)
 
 remake: clean all