Wrote code to implement camera
[matches/MCTX3420.git] / server / sensors / Makefile
1 # Makefile for server software
2 CXX = gcc
3 FLAGS = -std=c99 -Wall -pedantic -g -I../ -I/usr/include/opencv -I/usr/include/opencv2/highgui #For OpenCV
4 LIB = -lpthread
5 OBJ = strain.o resource.o pressure.o dilatometer.o
6 HEADERS = $(wildcard *.h)
7 RM = rm -f
8
9 all.o : $(OBJ)
10         ar rvs sensors.a $(OBJ)
11
12
13 %.o : %.c
14         $(CXX) $(FLAGS) -c $<
15
16 clean :
17         $(RM) $(BIN)
18         $(RM) *.o
19
20 clean_full: #cleans up all backup files
21         $(RM) $(BIN) $(OBJ)
22         $(RM) *.*~
23         $(RM) *~
24
25
26         

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