source: fact/tools/rawtoroot/Makefile@ 13460

Last change on this file since 13460 was 9888, checked in by neise, 14 years ago
initial commit of rawtoroot.
File size: 418 bytes
Line 
1#
2# Makefile to generate RawDataCTX.so shared library
3#
4# Oliver Grimm, Mai 2009
5#
6
7INCDIRS = -I../../drsdaq/
8
9CPPFLAGS = -fPIC -O3 -Wall -DOS_LINUX
10LIBS = -lstdc++
11
12RawDataCTX.so: RawDataCTX.o
13 $(CC) -shared -Wl,-soname,RawDataCTX.so -o RawDataCTX.so RawDataCTX.o -lc
14
15RawDataCTX.o: ../../drsdaq/RawDataCTX.cc
16 $(CC) $(CPPFLAGS) $(INCDIRS) -c -o RawDataCTX.o ../../drsdaq/RawDataCTX.cc
17
18clean:
19 @rm -f *.so *.o *~
Note: See TracBrowser for help on using the repository browser.