view Makefile @ 220:26ee1ab05de0

Added tag rel-0_9_0 for changeset c740d5177b4e
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 06 Mar 2018 14:38:17 +0200
parents 87dfca9f704d
children daaad6ad8212
line wrap: on
line source

###
### Configuration settings for Linux and generic UNIX
### See other Makefile.* files for more options.
###
USE_QTHTTP ?= yes


# Miscellaneous
QT5_MODULES = Core Gui Widgets Sql PrintSupport
QT5_PREFIX = 
BINTOOL_PREFIX =

PREFIX = /usr/local
BINPATH = ./
OBJPATH = obj/unix/
EXEEXT =

# Compiler flags and linker flags
ifeq ($(USE_QTHTTP),yes)
QT5_MODULES += Network
DEFINES += -DUSE_QTHTTP
endif
DEFINES += 
INCPATH = -I. `pkg-config --cflags $(addprefix Qt5,$(QT5_MODULES))`

CFLAGS += -pipe -D_REENTRANT -fPIC
CXXFLAGS += -pipe -D_REENTRANT -fPIC
LDFLAGS += -Wl,-O1

APP_LIBS += `pkg-config --libs $(addprefix Qt5,$(QT5_MODULES))`
APP_DEP_LIBS = 
APP_DEPS = 

# Qt tools
QT_RCC = rcc

QT_MOC = moc
QT_MOC_FLAGS =

QT_UIC = uic
QT_UIC_FLAGS =

include Makefile.gen