view Makefile @ 142:36c9cb759326

Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS and a PHP script on the remote server. Needs more work, testing and better error handling.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 24 Aug 2017 15:44:33 +0300
parents a5c8741b8662
children 2a8c97753381
line wrap: on
line source

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

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

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

# Compiler flags and linker flags
DEFINES = 
INCPATH = -I. `pkg-config --cflags $(addprefix Qt5,$(QT5_MODULES))`

CFLAGS += -pipe -O2 -Wall -W -D_REENTRANT -fPIC
CXXFLAGS += -pipe -O2 -Wall -W -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