Changeset 432 in svn
- Timestamp:
- Jun 17, 2009, 10:04:02 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r353 r432 14 14 endif 15 15 16 17 ifneq (,$(findstring macos,$(ARCH))) 18 CXXFLAGS += -Dmacos 19 else 20 ifneq (,$(findstring win,$(ARCH))) 21 CXXFLAGS += -Dwindows 22 else 23 CXXFLAGS += -Dlinux 24 endif 25 endif 26 27 16 28 SrcSuf = cc 17 29 … … 20 32 LIBS = $(ROOTLIBS) -lEG $(SYSLIBS) 21 33 GLIBS = $(ROOTGLIBS) $(SYSLIBS) 22 34 23 35 ### 24 36 … … 113 125 tmp/src/SmearUtil.$(ObjSuf): \ 114 126 src/SmearUtil.$(SrcSuf) 127 tmp/src/PdgParticle.$(ObjSuf): \ 128 src/PdgParticle.$(SrcSuf) 115 129 tmp/src/TriggerUtil.$(ObjSuf): \ 116 130 src/TriggerUtil.$(SrcSuf) … … 338 352 tmp/src/CaloUtil.$(ObjSuf) \ 339 353 tmp/src/SmearUtil.$(ObjSuf) \ 354 tmp/src/PdgParticle.$(ObjSuf) \ 340 355 tmp/src/TriggerUtil.$(ObjSuf) \ 341 356 tmp/src/BFieldProp.$(ObjSuf) \ -
trunk/genMakefile.tcl
r427 r432 218 218 ifneq (,$(findstring macos,$(ARCH))) 219 219 CXXFLAGS += -Dmacos 220 else ifneq (,$(findstring win,$(ARCH))) 220 else 221 ifneq (,$(findstring win,$(ARCH))) 221 222 CXXFLAGS += -Dwindows 222 223 else 223 224 CXXFLAGS += -Dlinux 225 endif 224 226 endif 225 227
Note:
See TracChangeset
for help on using the changeset viewer.