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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
##############################################################################
# Copyright (c) 2000-2021 Ericsson Telecom AB
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
#
# Contributors:
#
# Balasko, Jeno
# Godar, Marton
# Pilisi, Gergely
# Raduly, Csaba
# Szabo, Bence Janos
#
##############################################################################
TOP := ..
include $(TOP)/Makefile.cfg
SOURCES := converter.cc \
XMLParser.cc TTCN3Module.cc TTCN3ModuleInventory.cc \
RootType.cc SimpleType.cc AttributeType.cc ComplexType.cc \
Annotation.cc ImportStatement.cc \
PredefinedModules.cc GeneralFunctions.cc \
Mstring.cc Constant.cc
# No generated sources
STATIC_SOURCES := $(SOURCES)
HEADERS := $(SOURCES:.cc=.hh)
OBJECTS := $(SOURCES:.cc=.o) \
$(TOP)/common/new.o \
$(TOP)/common/memory.o
ifeq ($(LICENSING), yes)
OBJECTS += $(TOP)/common/license.o
endif
TARGETS := xsd2ttcn$(EXESUFFIX)
DEPFILES := $(patsubst %.cc,%.d,$(patsubst %.c,%.d,$(SOURCES)))
ifdef XMLDIR
ifeq ($(XMLDIR), default)
# libxml2 headers supplied by the system are usually in /usr/include/libxml2,
# so a -I is required. Rename XMLDIR for use in the common case.
XMLDIR := /usr
# do not add -L/usr/lib to LDFLAGS, it's redundant
else
LDFLAGS += -L$(XMLDIR)/lib
endif
# Always add to CPPFLAGS, even if "default"
CPPFLAGS += -I$(XMLDIR)/include/libxml2
endif
ifdef OPENSSL_DIR
ifneq ($(OPENSSL_DIR), default)
CPPFLAGS += -I$(OPENSSL_DIR)/include
LDFLAGS += -L$(OPENSSL_DIR)/lib
endif
endif
ifeq ($(PLATFORM),INTERIX)
# to get the "right" iconv, used by libxml2
CPPFLAGS += -I/usr/local/include
endif
# libraries for the linker
LDLIBS += -lxml2 -lcrypto
ifdef MINGW
LDLIBS += -lregex
endif
all run: $(TARGETS) $(PROGRAMS)
xsd2ttcn$(EXESUFFIX): $(OBJECTS)
$(CXX) $(LDFLAGS) -o $@ $(OBJECTS) $(LDLIBS) $(MINGW_LIBS)
install: $(TARGETS)
ifdef MINGW
mkdir -p $(TTCN3_DIR)/programs
cp $(TARGETS) $(TTCN3_DIR)/programs
else
mkdir -p $(BINDIR)
cp -f $(TARGETS) $(BINDIR)
endif
include $(TOP)/Makefile.genrules
|