-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
47 lines (36 loc) · 1.48 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#######################################################################
#
# Makefile for example1
#
# A. McCann 27-JUNE-2007
#
#######################################################################
#########################################################################
# General stuff
#########################################################################
CPP = g++
CFLAGS = -Wunused-result -fpermissive -o $@ -Wall -g -O2 -fPIC -rdynamic $(ROOTCFLAGS) $(PICOINC)
CP = /bin/cp
#########################################################################
# ROOT stuff
#########################################################################
ROOTPATH = /usr/local/src/root-6.16.00_install/bin
ROOTCFLAGS = $(shell $(ROOTPATH)/root-config --cflags)
ROOTLIBS = $(shell $(ROOTPATH)/root-config --libs) -lGeom -lRGL -lHistPainter
PICOLIBS = -L/opt/picoscope/lib/ -lusbtc08
PICOINC = -I/opt/picoscope/include/
ALLLIBS = $(PICOLIBS) $(ROOTLIBS)
#########################################################################
# Compilations/dependencies
#########################################################################
all:readPicoRoot
readPicoRoot.o: readPicoRoot.cpp
$(CPP) -c $(CFLAGS) readPicoRoot.cpp
readPicoRoot: readPicoRoot.o
$(CPP) $(CFLAGS) readPicoRoot.o $(ALLLIBS)
#########################################################################
# Tidying up
#########################################################################
clean:
rm -f readPicoRoot
rm -f *.o