Changeset 172 in Idarraga


Ignore:
Timestamp:
Apr 19, 2011, 10:32:51 PM (13 years ago)
Author:
idarraga
Message:
 
Location:
mafalda
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mafalda/Makefile

    r114 r172  
    7171endif
    7272
     73ifeq ($(ARCH),macosx)
     74# Linux with egcs, gcc 2.9x, gcc 3.x (>= RedHat 5.2)
     75CXX           = g++
     76CXXFLAGS      = -g3 -W -Wall
     77LD            = g++
     78LDFLAGS       = -O0
     79SOFLAGS       = -dynamiclib
     80endif
     81
     82ifeq ($(ARCH),macosx64)
     83# Linux with egcs, gcc 2.9x, gcc 3.x (>= RedHat 5.2)
     84CXX           = g++
     85CXXFLAGS      = -g3 -W -Wall -m64
     86LD            = g++
     87LDFLAGS       = -O0
     88SOFLAGS       = -dynamiclib
     89endif
     90
    7391ifeq ($(CXX),)
    7492$(error $(ARCH) invalid architecture)
  • mafalda/Makefile.macosx

    r171 r172  
    7272DICTDEP := $(shell ./buildList.scripts "DICT" $(HdrSuf) $(HdrSuf))
    7373
     74CINCDEP :=  $(shell ./buildList.scripts "CINCDEP" $(ObjSuf) $(SrcSuf))
     75
    7476WZANSO       = libMediPixAnalysisCore.$(DllSuf)
    7577WZAN         = MediPixAnalysis$(ExeSuf)
Note: See TracChangeset for help on using the changeset viewer.