Add data performance tests, revise block diagram, add pthread_mutex_init
[matches/MCTX3420.git] / testing / data_performance / Makefile
1 # Makefile for rpi side server
2 CXX = gcc
3 FLAGS = -std=c99 -Wall -Werror -pedantic -g
4 LIB = -lpthread -lsqlite3
5 BIN = binfile csv sqlite
6 RM = rm -f
7
8
9
10 all : $(BIN)
11
12 % : %.c
13         $(CXX) $(FLAGS) -o $@ $< $(LIB)
14
15
16
17 clean :
18         $(RM) $(BIN)
19         $(RM) *.o
20
21 clean_full: #cleans up all backup files
22         $(RM) $(BIN) $(OBJ) $(LINKOBJ)
23         $(RM) *.*~
24         $(RM) *~
25
26
27         

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