work on CSV preprocessing
[epclust.git] / data / preprocessing / Makefile
index 9a4a044..097420e 100644 (file)
@@ -1,2 +1,4 @@
-#TODO: depend on cgds...
-gcc -o convert_to_CSV convert_to_CSV.c -lm
+TARGET = transform.exe
+
+$(TARGET): convert_to_CSV.c
+       gcc convert_to_CSV.c -lm -lcgds -o $(TARGET)