Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:59

0001 CC=g++ -m32 
0002 
0003 CFLAGS= -Wall -fPIC -I. -I$(ROOTSYS)/include -L.
0004 
0005 .cpp.o:
0006         $(CC) -c $(CFLAGS) $< 
0007 .cpp.a:
0008         $(CC) -c $(CFLAGS) $<
0009         ar r $@ $*.o; rm $*.o
0010 .f.o:
0011         $(CC) -ff90 $(OPT) -c $< 
0012 .f.a:
0013         $(CC) -ff90 $(OPT) -c $< 
0014         ar r $@ $*.o; rm $*.o
0015 
0016 # Chooses whether to use ranlib - not if your system is a linux one
0017 all: triggerComparison.x
0018 
0019 # 
0020 triggerComparison.x: Makefile triggerComparison.o 
0021         $(CC) -fsigned-char -Wstrict-prototypes -Wimplicit  -Wmissing-prototypes -Wunused \
0022         -o triggerComparison.x $(CFLAGS) triggerComparison.o \
0023         -L$(ROOTSYS)/lib $(shell root-config --glibs) \
0024         -rdynamic -lg2c -ldl -lm;
0025         touch triggerComparison.x
0026 
0027 # clean
0028 clean: 
0029         rm *.o *.x