forked from PSTL-UH/HPCMetaMorpheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.defs.in
41 lines (31 loc) · 1.04 KB
/
Makefile.defs.in
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
#
# Copyright (c) 2019-2020 University of Houston. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
MMORPHEUS_DIR = @mmorpheus_dir@
MMORPHEUS_INC_DIR = $(MMORPHEUS_DIR)/include
MMORPHEUS_LIB_DIR = $(MMORPHEUS_DIR)/lib
MMORPHEUS_BIN_DIR = $(MMORPHEUS_DIR)/bin
MMORPHEUS_LIB = libmmorpheus.a
MMORPHEUS_EXEC = HPCMetaMorpheus
MZLIB_DIR = $(MMORPHEUS_DIR)/mzlib
MZLIB_INC_DIR = $(MZLIB_DIR)/include
MZLIB_LIB = -lmzlib
FLASHLFQ_LIB = -lflashlfq
XSD_DIR = @xsdcxx_dir@
XSD_INC_DIR = $(XSD_DIR)
XSD_LIB_DIR = $(XSD_DIR)/lib64
XSD_LIB = -lxerces-c
#Set some Flags
AR = ar
AR_FLAGS = clr
CC = @CC@
CFLAGS = @CFLAGS@
CXX = @CXX@
CXXFLAGS = @CXXFLAGS@ -I$(MMORPHEUS_INC_DIR) -I$(MZLIB_INC_DIR) -I$(MZLIB_DIR) -I$(MZLIB_DIR)/MzLibUtil -I$(XSD_INC_DIR)/ -I$(XSD_INC_DIR)/xercesc -I@libxml2_dir@
CXXLOCALFLAGS = -DNDEBUG
LDFLAGS = -L$(MMORPHEUS_LIB_DIR) -lmmorpheus $(MZLIB_LIB) $(FLASHLFQ_LIB) -lz -lstdc++fs -L$(XSD_LIB_DIR) $(XSD_LIB) -lxml2