Changeset 2344
- Timestamp:
- 09/15/03 12:48:51 (21 years ago)
- Location:
- trunk/MagicSoft/Simulation/Detector/Camera
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Simulation/Detector/Camera/Makefile.conf.general
r1566 r2344 4 4 5 5 ROOTVER = `root-config --version` 6 ROOTLIBS = `root-config --libs` 7 ROOTGLIBS = `root-config --glibs` 6 ROOTLIBS = `root-config --libs` -lMinuit -lHistPainter 7 ROOTGLIBS = `root-config --glibs` -lMinuit -lHistPainter 8 8 ROOTCFLAGS = `root-config --cflags` 9 9 … … 12 12 # 13 13 14 DEFINES = -DROOTVER=\"$(ROOTVER)\" $(ARCHDEF) 14 # 15 # You can use this flags to further costumize compilation: 16 # export MARSDEFINES="-DHAVE_DARKBACKGROUND -DHAVE_XPM" 17 # export MARSFLAGS= 18 # export MARSLIBS="-lX11 -lXpm -L/usr/X11R6/lib" 19 # 20 DEFINES = -DMARSVER=\"\<cvs\>\" -D__MARS__ -DROOTVER=\"$(ROOTVER)\" $(ARCHDEF) $(MARSDEFINES) 15 21 16 22 CXXFLAGS = $(ROOTCFLAGS) $(INCLUDES) $(OPTIM) $(DEBUG) $(DEFINES) 17 CFLAGS = $(CXXFLAGS) 23 CFLAGS = $(CXXFLAGS) $(MARSFLAGS) 18 24 FFLAGS = $(CXXFLAGS) 19 25 -
trunk/MagicSoft/Simulation/Detector/Camera/Makefile.conf.linux
r1157 r2344 20 20 # ----->>> settings for compilation 21 21 # 22 OPTIM = -O3 -Wall -fno-rtti -fnonnull-objects -fno-exceptions -fPIC -Wtraditional -Wpointer-arith -Wcast-align -Wconversion -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Woverloaded-virtual 23 DEBUG = 22 OPTIM = -O5 -Wall -fno-exceptions -fPIC -Wpointer-arith -Wcast-align -Wconversion -Wstrict-prototypes -Wmissing-prototypes -Woverloaded-virtual 23 # ggc 3.2: removed -fnonnull-objects -Wtraditional -Wnested-externs 24 DEBUG = 24 25 ARCHDEF = -D__LINUX__ 26 DYNLIB = -shared 25 27 26 28 # For debugging information use '-g' 27 29 # For producing gmon.out use '-pg' 28 30 29 MARS_LIB = -Llib $(SUBDIRS:%=-l%) 31 MARS_LIB = -Llib $(SUBDIRS:%=-l%) $(MARSLIBS) 30 32 INCLUDES = -I. $(SUBDIRS:%=-I%) 31 33 -
trunk/MagicSoft/Simulation/Detector/Camera/Makefile.conf.osf1
r1309 r2344 23 23 # 24 24 25 OPTIM = -O2 -ieee -arch host 25 OPTIM = -O2 -ieee -arch host -lpthread 26 26 DEBUG = -g -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst,boolexprconst 27 ARCHDEF = -D__OSF__ 27 ARCHDEF = -D__OSF__ -D__USE_STD_IOSTREAM -DR__ANSISTREAM 28 DYNLIB = -shared 28 29 29 MARS_LIB = -Llib $(SUBDIRS/*/-l&) 30 MARS_LIB = -Llib $(SUBDIRS/*/-l&) $(MARSLIBS) 30 31 INCLUDES = -I. $(SUBDIRS/*/-I&) 31 32 … … 38 39 39 40 41 -
trunk/MagicSoft/Simulation/Detector/Camera/Makefile.rules
r1156 r2344 53 53 rmbak: 54 54 @echo " Removing backup files..." 55 @rm -f *~ kk.kk *.bak 55 @rm -f *~ kk.kk *.bak .#* .*~ 56 56 57 57 rmbakmac: … … 61 61 rmhtml: 62 62 @echo " Removing htmldoc-tree" 63 @rm -rf htmldoc 63 rm -rf htmldoc/examples 64 rm -rf htmldoc/src 65 ls htmldoc/* | grep "htmldoc/" | grep -v images | grep -v CVS | xargs rm -f 64 66 65 67 cflags: 66 68 @echo $(INCLUDES) $(CXXFLAGS) 67 69 68 70 diff: 71 @cvs diff | grep -v "^? " > mars.diff
Note:
See TracChangeset
for help on using the changeset viewer.