-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.darwin_x86_64
53 lines (39 loc) · 1.49 KB
/
Makefile.darwin_x86_64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# Darwin system-specific definitions for aged Makefile
#
# - Use this version if you have OpenMotif installed
# - If you have lesstif installed, then set AGED_MAKE_VER to .lesstif
#
# Note: VERFLAGS must be defined externally
#
# Phil Harvey - 12/2/98
#
BASE = .
INCLUDE = -I$(BASE)
PROJFLAGS = $(VERFLAGS) -DANTI_ALIAS
CFLAGS = -g -O0 -D_BSD=43 $(PROJFLAGS)
CXXFLAGS = -g -O0 -Wall -fwritable-strings $(PROJFLAGS)
PICFLAG = -fPIC
LDFLAGS = -g -bind_at_load
LIBS = -lm -lpthread
CCC = g++
CC = cc
LD = ld
LDCC = g++
LDCC_SHARED = g++
LDSO_FLAGS = -shared -elf
CC_LD_FLAGS = -shared -elf
XINCS = -I/opt/local/include -I/opt/local/include/freetype2
XFLAGS = $(XINCS)
XLIBS = -L/usr/local/lib -L/opt/local/lib -lXm -L/usr/X11R6/lib -lXmu -lXft -lXt -lXrender -lX11
ROOTINCS = -I$(ROOTSYS)/include -I$(ANALYSIS_TPC)/include -I$(AGANA) -I$(GARFIELDPP)\
-I$(AGTPC_ANALYSIS) -I$(SOURCE_TPC)/include -I$(ROOTANASYS)/include
ROOTFLAGS = -std=c++11 -fPIC $(ROOTINCS)
ROOTLIBS = $(shell root-config --libs) -lMinuit -L$(ANALYSIS_TPC) -lAGUTILS
OS_OBJS =
OS_ROOTOBJS =
include Makefile.include
NextEvent.o: linux_patch/NextEvent.c
$(CC) $(CFLAGS) $(PICFLAG) $(INCLUDE) $(XFLAGS) -I./linux_patch -c linux_patch/NextEvent.c
RowColumn.o: linux_patch/RowColumn.c
$(CC) $(CFLAGS) $(PICFLAG) $(INCLUDE) $(XFLAGS) -I./linux_patch -c linux_patch/RowColumn.c