-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
31 lines (30 loc) · 1.09 KB
/
Makefile
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
NAME= UberTuber
TYPE= APP
APP_MIME_SIG= application/x-vnd.humdinger-ubertuber
SRCS= App.cpp MainWindow.cpp Settings.cpp WorkerThread.cpp
RDEFS= UberTuber.rdef
LIBS= be localestub tracker $(STDCPPLIBS)
LIBPATHS=
SYSTEM_INCLUDE_PATHS=
LOCALES= ca cs de el en en_GB es fi fr fur it nl pl ro ru sc sv tr uk
LOCAL_INCLUDE_PATHS=
OPTIMIZE=FULL
# specify any preprocessor symbols to be defined. The symbols will not
# have their values set automatically; you must supply the value (if any)
# to use. For example, setting DEFINES to "DEBUG=1" will cause the
# compiler option "-DDEBUG=1" to be used. Setting DEFINES to "DEBUG"
# would pass "-DDEBUG" on the compiler's command line.
DEFINES=
# specify special warning levels
# if unspecified default warnings will be used
# NONE = supress all warnings
# ALL = enable all warnings
WARNINGS =
# Build with debugging symbols if set to TRUE
SYMBOLS=
COMPILER_FLAGS= -Wall -Wno-multichar
LINKER_FLAGS=
## include the makefile-engine
DEVEL_DIRECTORY := \
$(shell findpaths -r "makefile_engine" B_FIND_PATH_DEVELOP_DIRECTORY)
include $(DEVEL_DIRECTORY)/etc/makefile-engine