Add data performance tests, revise block diagram, add pthread_mutex_init
[matches/MCTX3420.git] / testing / data_performance / Makefile
diff --git a/testing/data_performance/Makefile b/testing/data_performance/Makefile
new file mode 100644 (file)
index 0000000..d938c99
--- /dev/null
@@ -0,0 +1,27 @@
+# Makefile for rpi side server
+CXX = gcc
+FLAGS = -std=c99 -Wall -Werror -pedantic -g
+LIB = -lpthread -lsqlite3
+BIN = binfile csv sqlite
+RM = rm -f
+
+
+
+all : $(BIN)
+
+% : %.c
+       $(CXX) $(FLAGS) -o $@ $< $(LIB)
+
+
+
+clean :
+       $(RM) $(BIN)
+       $(RM) *.o
+
+clean_full: #cleans up all backup files
+       $(RM) $(BIN) $(OBJ) $(LINKOBJ)
+       $(RM) *.*~
+       $(RM) *~
+
+
+       

UCC git Repository :: git.ucc.asn.au