23 lines
528 B
Makefile
23 lines
528 B
Makefile
# 16 october 2015
|
|
|
|
EXESUFFIX =
|
|
LIBSUFFIX = .so
|
|
OSHSUFFIX = .h
|
|
STATICLIBSUFFIX = .a
|
|
TOOLCHAIN = gcc
|
|
|
|
# LONGTERM clean up all the NAMEs and SUFFIXs and NOSOSUFFIXs or whatever it was
|
|
USESSONAME = 1
|
|
SOVERSION = $(SOVERSION0)
|
|
SONAMEEXT = $(LIBSUFFIX).$(SOVERSION)
|
|
# this is not gcc-global because OS X uses a different filename format
|
|
SONAMEFLAG = -Wl,-soname,
|
|
|
|
NATIVE_UI_CFLAGS = \
|
|
`pkg-config --cflags gtk+-3.0`
|
|
NATIVE_UI_CXXFLAGS = \
|
|
`pkg-config --cflags gtk+-3.0`
|
|
NATIVE_UI_LDFLAGS = \
|
|
`pkg-config --libs gtk+-3.0` -lm -ldl
|
|
|