view Makefile @ 50:402446a76794

And more build system work.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 07 Apr 2017 06:04:07 +0300
parents 200ec310660a
children 1ac8fdd932b3
line wrap: on
line source

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

# Miscellaneous
QT5_PREFIX = 
BINTOOL_PREFIX =

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

# Compiler flags and linker flags
DEFINES = 
INCPATH = -I. `pkg-config --cflags Qt5Core Qt5Gui Qt5Widgets Qt5Sql`


CFLAGS += -pipe -O2 -Wall -W -D_REENTRANT -fPIC
CXXFLAGS += -pipe -O2 -Wall -W -D_REENTRANT -fPIC
LDFLAGS += -Wl,-O1
LIBS += `pkg-config --libs Qt5Core Qt5Gui Qt5Widgets Qt5Sql`

APP_DEPS = 

# Qt tools
QT_RCC = rcc

QT_MOC = moc
QT_MOC_FLAGS =

QT_UIC = uic
QT_UIC_FLAGS =

include Makefile.gen